├── .appcast.xml ├── .gitignore ├── LICENSE ├── README.md ├── icon.png ├── intro.png ├── package.json ├── slice.sketchplugin └── Contents │ ├── Resources │ ├── sliceWithFrame.png │ └── sliceWithPadding.png │ └── Sketch │ ├── manifest.json │ ├── slice-frame.js │ └── slice-padding.js └── src ├── manifest.json ├── slice-frame.js ├── slice-padding.js └── slice.js /.appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d4rekanguok/sketch-slicer/HEAD/.appcast.xml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d4rekanguok/sketch-slicer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d4rekanguok/sketch-slicer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d4rekanguok/sketch-slicer/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d4rekanguok/sketch-slicer/HEAD/icon.png -------------------------------------------------------------------------------- /intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d4rekanguok/sketch-slicer/HEAD/intro.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d4rekanguok/sketch-slicer/HEAD/package.json -------------------------------------------------------------------------------- /slice.sketchplugin/Contents/Resources/sliceWithFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d4rekanguok/sketch-slicer/HEAD/slice.sketchplugin/Contents/Resources/sliceWithFrame.png -------------------------------------------------------------------------------- /slice.sketchplugin/Contents/Resources/sliceWithPadding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d4rekanguok/sketch-slicer/HEAD/slice.sketchplugin/Contents/Resources/sliceWithPadding.png -------------------------------------------------------------------------------- /slice.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d4rekanguok/sketch-slicer/HEAD/slice.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /slice.sketchplugin/Contents/Sketch/slice-frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d4rekanguok/sketch-slicer/HEAD/slice.sketchplugin/Contents/Sketch/slice-frame.js -------------------------------------------------------------------------------- /slice.sketchplugin/Contents/Sketch/slice-padding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d4rekanguok/sketch-slicer/HEAD/slice.sketchplugin/Contents/Sketch/slice-padding.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d4rekanguok/sketch-slicer/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/slice-frame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d4rekanguok/sketch-slicer/HEAD/src/slice-frame.js -------------------------------------------------------------------------------- /src/slice-padding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d4rekanguok/sketch-slicer/HEAD/src/slice-padding.js -------------------------------------------------------------------------------- /src/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d4rekanguok/sketch-slicer/HEAD/src/slice.js --------------------------------------------------------------------------------