├── .gitignore ├── Harukify.sketchplugin └── Contents │ └── Sketch │ ├── manifest.json │ └── script.cocoascript ├── LICENSE.md ├── README.md └── example.gif /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /Harukify.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sngazm/harukify/HEAD/Harukify.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /Harukify.sketchplugin/Contents/Sketch/script.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sngazm/harukify/HEAD/Harukify.sketchplugin/Contents/Sketch/script.cocoascript -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sngazm/harukify/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sngazm/harukify/HEAD/README.md -------------------------------------------------------------------------------- /example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sngazm/harukify/HEAD/example.gif --------------------------------------------------------------------------------