├── .gitignore ├── LICENSE ├── README.md └── specify.sketchplugin └── Contents ├── Resources ├── oval@2x.png └── rectangle@2x.png └── Sketch ├── main.js ├── manifest.json ├── specify-oval.cocoascript └── specify-rectangle.cocoascript /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotekj/specify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotekj/specify/HEAD/README.md -------------------------------------------------------------------------------- /specify.sketchplugin/Contents/Resources/oval@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotekj/specify/HEAD/specify.sketchplugin/Contents/Resources/oval@2x.png -------------------------------------------------------------------------------- /specify.sketchplugin/Contents/Resources/rectangle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotekj/specify/HEAD/specify.sketchplugin/Contents/Resources/rectangle@2x.png -------------------------------------------------------------------------------- /specify.sketchplugin/Contents/Sketch/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotekj/specify/HEAD/specify.sketchplugin/Contents/Sketch/main.js -------------------------------------------------------------------------------- /specify.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotekj/specify/HEAD/specify.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /specify.sketchplugin/Contents/Sketch/specify-oval.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotekj/specify/HEAD/specify.sketchplugin/Contents/Sketch/specify-oval.cocoascript -------------------------------------------------------------------------------- /specify.sketchplugin/Contents/Sketch/specify-rectangle.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotekj/specify/HEAD/specify.sketchplugin/Contents/Sketch/specify-rectangle.cocoascript --------------------------------------------------------------------------------