├── README.md ├── ScreenFork.sketchplugin └── Contents │ ├── Resources │ └── defaults.json │ └── Sketch │ ├── manifest.json │ └── script.cocoascript ├── example.sketch └── images ├── exportable.png ├── shortcuts.png ├── variant_1.png └── variant_2.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/screenfork/ScreenFork/HEAD/README.md -------------------------------------------------------------------------------- /ScreenFork.sketchplugin/Contents/Resources/defaults.json: -------------------------------------------------------------------------------- 1 | {"directory":"\/Users\/nikita\/Desktop\/123"} -------------------------------------------------------------------------------- /ScreenFork.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/screenfork/ScreenFork/HEAD/ScreenFork.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /ScreenFork.sketchplugin/Contents/Sketch/script.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/screenfork/ScreenFork/HEAD/ScreenFork.sketchplugin/Contents/Sketch/script.cocoascript -------------------------------------------------------------------------------- /example.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/screenfork/ScreenFork/HEAD/example.sketch -------------------------------------------------------------------------------- /images/exportable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/screenfork/ScreenFork/HEAD/images/exportable.png -------------------------------------------------------------------------------- /images/shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/screenfork/ScreenFork/HEAD/images/shortcuts.png -------------------------------------------------------------------------------- /images/variant_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/screenfork/ScreenFork/HEAD/images/variant_1.png -------------------------------------------------------------------------------- /images/variant_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/screenfork/ScreenFork/HEAD/images/variant_2.png --------------------------------------------------------------------------------