├── .gitignore ├── LICENSE.md ├── README.md ├── Style Inventory.sketchplugin └── Contents │ └── Sketch │ ├── Inventory │ ├── Generate.js │ ├── Import.js │ ├── Name Color Swatch.js │ └── pattern.png │ ├── Selection │ ├── Select Layers by Size.sketchplugin │ ├── by Color │ │ ├── Choose.sketchplugin │ │ ├── Select Layers by Color on Artboard.js │ │ └── Select Layers by Color on Page.js │ ├── by Name │ │ ├── Select Layers by Name on Artboard.js │ │ └── Select Layers by Name on Page.js │ ├── by String │ │ ├── Replace Strings on Artboard.js │ │ └── Replace Strings on Page.js │ └── by Text Style │ │ ├── Select Layers by Text Style on Artboard.js │ │ └── Select Layers by Text Style on Page.js │ ├── inventory.js │ ├── manifest.json │ ├── persistence.js │ └── sandbox.js ├── appcast.xml └── sketch-style-inventory-runner.png /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/README.md -------------------------------------------------------------------------------- /Style Inventory.sketchplugin/Contents/Sketch/Inventory/Generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/Style Inventory.sketchplugin/Contents/Sketch/Inventory/Generate.js -------------------------------------------------------------------------------- /Style Inventory.sketchplugin/Contents/Sketch/Inventory/Import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/Style Inventory.sketchplugin/Contents/Sketch/Inventory/Import.js -------------------------------------------------------------------------------- /Style Inventory.sketchplugin/Contents/Sketch/Inventory/Name Color Swatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/Style Inventory.sketchplugin/Contents/Sketch/Inventory/Name Color Swatch.js -------------------------------------------------------------------------------- /Style Inventory.sketchplugin/Contents/Sketch/Inventory/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/Style Inventory.sketchplugin/Contents/Sketch/Inventory/pattern.png -------------------------------------------------------------------------------- /Style Inventory.sketchplugin/Contents/Sketch/Selection/Select Layers by Size.sketchplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/Style Inventory.sketchplugin/Contents/Sketch/Selection/Select Layers by Size.sketchplugin -------------------------------------------------------------------------------- /Style Inventory.sketchplugin/Contents/Sketch/Selection/by Color/Choose.sketchplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/Style Inventory.sketchplugin/Contents/Sketch/Selection/by Color/Choose.sketchplugin -------------------------------------------------------------------------------- /Style Inventory.sketchplugin/Contents/Sketch/Selection/by Color/Select Layers by Color on Artboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/Style Inventory.sketchplugin/Contents/Sketch/Selection/by Color/Select Layers by Color on Artboard.js -------------------------------------------------------------------------------- /Style Inventory.sketchplugin/Contents/Sketch/Selection/by Color/Select Layers by Color on Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/Style Inventory.sketchplugin/Contents/Sketch/Selection/by Color/Select Layers by Color on Page.js -------------------------------------------------------------------------------- /Style Inventory.sketchplugin/Contents/Sketch/Selection/by Name/Select Layers by Name on Artboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/Style Inventory.sketchplugin/Contents/Sketch/Selection/by Name/Select Layers by Name on Artboard.js -------------------------------------------------------------------------------- /Style Inventory.sketchplugin/Contents/Sketch/Selection/by Name/Select Layers by Name on Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/Style Inventory.sketchplugin/Contents/Sketch/Selection/by Name/Select Layers by Name on Page.js -------------------------------------------------------------------------------- /Style Inventory.sketchplugin/Contents/Sketch/Selection/by String/Replace Strings on Artboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/Style Inventory.sketchplugin/Contents/Sketch/Selection/by String/Replace Strings on Artboard.js -------------------------------------------------------------------------------- /Style Inventory.sketchplugin/Contents/Sketch/Selection/by String/Replace Strings on Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/Style Inventory.sketchplugin/Contents/Sketch/Selection/by String/Replace Strings on Page.js -------------------------------------------------------------------------------- /Style Inventory.sketchplugin/Contents/Sketch/Selection/by Text Style/Select Layers by Text Style on Artboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/Style Inventory.sketchplugin/Contents/Sketch/Selection/by Text Style/Select Layers by Text Style on Artboard.js -------------------------------------------------------------------------------- /Style Inventory.sketchplugin/Contents/Sketch/Selection/by Text Style/Select Layers by Text Style on Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/Style Inventory.sketchplugin/Contents/Sketch/Selection/by Text Style/Select Layers by Text Style on Page.js -------------------------------------------------------------------------------- /Style Inventory.sketchplugin/Contents/Sketch/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/Style Inventory.sketchplugin/Contents/Sketch/inventory.js -------------------------------------------------------------------------------- /Style Inventory.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/Style Inventory.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /Style Inventory.sketchplugin/Contents/Sketch/persistence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/Style Inventory.sketchplugin/Contents/Sketch/persistence.js -------------------------------------------------------------------------------- /Style Inventory.sketchplugin/Contents/Sketch/sandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/Style Inventory.sketchplugin/Contents/Sketch/sandbox.js -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/appcast.xml -------------------------------------------------------------------------------- /sketch-style-inventory-runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getflourish/Sketch-Style-Inventory/HEAD/sketch-style-inventory-runner.png --------------------------------------------------------------------------------