├── .gitignore ├── LICENSE ├── README.md └── Select Similar Layers.sketchplugin └── Contents └── Sketch ├── icon.png ├── manifest.json └── script.cocoascript /.gitignore: -------------------------------------------------------------------------------- 1 | /.DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderbit/sketch-select-similar-layers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderbit/sketch-select-similar-layers/HEAD/README.md -------------------------------------------------------------------------------- /Select Similar Layers.sketchplugin/Contents/Sketch/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderbit/sketch-select-similar-layers/HEAD/Select Similar Layers.sketchplugin/Contents/Sketch/icon.png -------------------------------------------------------------------------------- /Select Similar Layers.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderbit/sketch-select-similar-layers/HEAD/Select Similar Layers.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /Select Similar Layers.sketchplugin/Contents/Sketch/script.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wonderbit/sketch-select-similar-layers/HEAD/Select Similar Layers.sketchplugin/Contents/Sketch/script.cocoascript --------------------------------------------------------------------------------