├── .gitignore ├── Coffee Slice.sketchplugin └── Contents │ └── Sketch │ ├── exportbigpng.js │ ├── exportbigsvg.js │ ├── exportsmallpng.js │ ├── exportsmallsvg.js │ ├── manifest.json │ └── plugin.js ├── README.md ├── README_zh.md ├── img ├── autosave1.png ├── autosave2.png ├── autosave3.png ├── autosave4.png ├── demo1.gif ├── demo2.gif ├── inputSize.png ├── pic.png ├── pic_en.png ├── readied.png └── selectIcon.png ├── installer-package └── Coffee-Slice.sketchplugin.zip └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/.gitignore -------------------------------------------------------------------------------- /Coffee Slice.sketchplugin/Contents/Sketch/exportbigpng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/Coffee Slice.sketchplugin/Contents/Sketch/exportbigpng.js -------------------------------------------------------------------------------- /Coffee Slice.sketchplugin/Contents/Sketch/exportbigsvg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/Coffee Slice.sketchplugin/Contents/Sketch/exportbigsvg.js -------------------------------------------------------------------------------- /Coffee Slice.sketchplugin/Contents/Sketch/exportsmallpng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/Coffee Slice.sketchplugin/Contents/Sketch/exportsmallpng.js -------------------------------------------------------------------------------- /Coffee Slice.sketchplugin/Contents/Sketch/exportsmallsvg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/Coffee Slice.sketchplugin/Contents/Sketch/exportsmallsvg.js -------------------------------------------------------------------------------- /Coffee Slice.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/Coffee Slice.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /Coffee Slice.sketchplugin/Contents/Sketch/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/Coffee Slice.sketchplugin/Contents/Sketch/plugin.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/README_zh.md -------------------------------------------------------------------------------- /img/autosave1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/img/autosave1.png -------------------------------------------------------------------------------- /img/autosave2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/img/autosave2.png -------------------------------------------------------------------------------- /img/autosave3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/img/autosave3.png -------------------------------------------------------------------------------- /img/autosave4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/img/autosave4.png -------------------------------------------------------------------------------- /img/demo1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/img/demo1.gif -------------------------------------------------------------------------------- /img/demo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/img/demo2.gif -------------------------------------------------------------------------------- /img/inputSize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/img/inputSize.png -------------------------------------------------------------------------------- /img/pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/img/pic.png -------------------------------------------------------------------------------- /img/pic_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/img/pic_en.png -------------------------------------------------------------------------------- /img/readied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/img/readied.png -------------------------------------------------------------------------------- /img/selectIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/img/selectIcon.png -------------------------------------------------------------------------------- /installer-package/Coffee-Slice.sketchplugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/installer-package/Coffee-Slice.sketchplugin.zip -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KivyGogh/Coffee-Slice/HEAD/package.json --------------------------------------------------------------------------------