├── .gitignore ├── README.md ├── Sketch Commands.sketchplugin └── Contents │ ├── Resources │ └── icon.png │ └── Sketch │ ├── Align │ ├── Space Horizontal.js │ └── Space Vertical.js │ ├── Duplicate │ ├── Duplicate Artboard Below.cocoascript │ └── Duplicate Artboard Right.cocoascript │ ├── Effects │ ├── Repeat Horizontal.cocoascript │ └── Repeat Vertical.cocoascript │ ├── Export │ ├── All Artboards as PDF.cocoascript │ ├── All Artboards as PNG in….cocoascript │ ├── All Artboards as PNG.cocoascript │ ├── All Artboards as SVG.cocoascript │ ├── All Slices as PDF.cocoascript │ ├── All Slices as PNG in ZIP.cocoascript │ ├── All Slices as PNG in….cocoascript │ ├── All Slices as PNG.cocoascript │ ├── All Slices as SVG.cocoascript │ ├── Save and Export Slices.cocoascript │ ├── Selection to Desktop as PDF.cocoascript │ ├── Selection to Desktop as PNG.cocoascript │ ├── Selection to Desktop as SVG.cocoascript │ ├── Whole Page to Desktop as PDF.cocoascript │ └── Whole Page to Desktop as PNG.cocoascript │ ├── Guides │ ├── Add Guides Manually to Artboard.cocoascript │ ├── Around Selection.cocoascript │ ├── Clear All Guides in Current Artboard.cocoascript │ ├── Clear All Guides in Current Page.cocoascript │ ├── Clear All Guides.cocoascript │ ├── Clear Horizontal Guides in Current Page.cocoascript │ ├── Clear Vertical Guides in Current Page.cocoascript │ ├── Repeat Guides horizontally on Artboard.cocoascript │ └── Repeat Guides vertically on Artboard.cocoascript │ ├── Numberize │ ├── Artboards Add.js │ ├── Artboards Remove.js │ ├── Pages Add.js │ └── Pages Remove.js │ ├── Pages │ ├── Duplicate Current Page.cocoascript │ ├── Remove Current Page.cocoascript │ └── Set Name….js │ ├── Playground │ └── Kitchen Sink.cocoascript │ ├── Position │ ├── Move Down 100px.js │ ├── Move Left 100px.js │ ├── Move Right 100px.js │ ├── Move Up 100px.js │ ├── Set Position….js │ └── Swap Positions.cocoascript │ ├── Properties │ ├── Make Pill.js │ ├── Rotation….js │ └── Set Radius….js │ ├── Select │ ├── All Layers in Current Artboard.js │ ├── All Text Layers in Page.js │ └── Current Artboard.js │ ├── Size │ ├── Equalize Height Down.cocoascript │ ├── Equalize Height Up.cocoascript │ ├── Equalize Width Down.cocoascript │ ├── Equalize Width Up.cocoascript │ ├── Height +100px.cocoascript │ ├── Height -100px.cocoascript │ ├── Height….cocoascript │ ├── Scale to 16-9.cocoascript │ ├── Scale to 4-3.cocoascript │ ├── Set Size….cocoascript │ ├── Width +100px.cocoascript │ ├── Width -100px.cocoascript │ └── Width….cocoascript │ ├── Text │ ├── Case Sentence case.cocoascript │ └── Case Title Case.cocoascript │ ├── library │ ├── common.js │ └── utils.js │ └── manifest.json └── appcast.xml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Bohemian\ Coding 3 | wiki -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/README.md -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Resources/icon.png -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Align/Space Horizontal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Align/Space Horizontal.js -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Align/Space Vertical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Align/Space Vertical.js -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Duplicate/Duplicate Artboard Below.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Duplicate/Duplicate Artboard Below.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Duplicate/Duplicate Artboard Right.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Duplicate/Duplicate Artboard Right.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Effects/Repeat Horizontal.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Effects/Repeat Horizontal.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Effects/Repeat Vertical.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Effects/Repeat Vertical.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Export/All Artboards as PDF.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Export/All Artboards as PDF.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Export/All Artboards as PNG in….cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Export/All Artboards as PNG in….cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Export/All Artboards as PNG.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Export/All Artboards as PNG.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Export/All Artboards as SVG.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Export/All Artboards as SVG.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Export/All Slices as PDF.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Export/All Slices as PDF.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Export/All Slices as PNG in ZIP.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Export/All Slices as PNG in ZIP.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Export/All Slices as PNG in….cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Export/All Slices as PNG in….cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Export/All Slices as PNG.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Export/All Slices as PNG.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Export/All Slices as SVG.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Export/All Slices as SVG.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Export/Save and Export Slices.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Export/Save and Export Slices.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Export/Selection to Desktop as PDF.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Export/Selection to Desktop as PDF.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Export/Selection to Desktop as PNG.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Export/Selection to Desktop as PNG.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Export/Selection to Desktop as SVG.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Export/Selection to Desktop as SVG.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Export/Whole Page to Desktop as PDF.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Export/Whole Page to Desktop as PDF.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Export/Whole Page to Desktop as PNG.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Export/Whole Page to Desktop as PNG.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Guides/Add Guides Manually to Artboard.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Guides/Add Guides Manually to Artboard.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Guides/Around Selection.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Guides/Around Selection.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Guides/Clear All Guides in Current Artboard.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Guides/Clear All Guides in Current Artboard.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Guides/Clear All Guides in Current Page.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Guides/Clear All Guides in Current Page.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Guides/Clear All Guides.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Guides/Clear All Guides.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Guides/Clear Horizontal Guides in Current Page.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Guides/Clear Horizontal Guides in Current Page.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Guides/Clear Vertical Guides in Current Page.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Guides/Clear Vertical Guides in Current Page.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Guides/Repeat Guides horizontally on Artboard.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Guides/Repeat Guides horizontally on Artboard.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Guides/Repeat Guides vertically on Artboard.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Guides/Repeat Guides vertically on Artboard.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Numberize/Artboards Add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Numberize/Artboards Add.js -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Numberize/Artboards Remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Numberize/Artboards Remove.js -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Numberize/Pages Add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Numberize/Pages Add.js -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Numberize/Pages Remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Numberize/Pages Remove.js -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Pages/Duplicate Current Page.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Pages/Duplicate Current Page.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Pages/Remove Current Page.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Pages/Remove Current Page.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Pages/Set Name….js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Pages/Set Name….js -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Playground/Kitchen Sink.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Playground/Kitchen Sink.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Position/Move Down 100px.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Position/Move Down 100px.js -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Position/Move Left 100px.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Position/Move Left 100px.js -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Position/Move Right 100px.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Position/Move Right 100px.js -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Position/Move Up 100px.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Position/Move Up 100px.js -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Position/Set Position….js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Position/Set Position….js -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Position/Swap Positions.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Position/Swap Positions.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Properties/Make Pill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Properties/Make Pill.js -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Properties/Rotation….js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Properties/Rotation….js -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Properties/Set Radius….js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Properties/Set Radius….js -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Select/All Layers in Current Artboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Select/All Layers in Current Artboard.js -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Select/All Text Layers in Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Select/All Text Layers in Page.js -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Select/Current Artboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Select/Current Artboard.js -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Size/Equalize Height Down.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Size/Equalize Height Down.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Size/Equalize Height Up.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Size/Equalize Height Up.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Size/Equalize Width Down.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Size/Equalize Width Down.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Size/Equalize Width Up.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Size/Equalize Width Up.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Size/Height +100px.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Size/Height +100px.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Size/Height -100px.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Size/Height -100px.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Size/Height….cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Size/Height….cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Size/Scale to 16-9.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Size/Scale to 16-9.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Size/Scale to 4-3.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Size/Scale to 4-3.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Size/Set Size….cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Size/Set Size….cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Size/Width +100px.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Size/Width +100px.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Size/Width -100px.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Size/Width -100px.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Size/Width….cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Size/Width….cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Text/Case Sentence case.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Text/Case Sentence case.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/Text/Case Title Case.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/Text/Case Title Case.cocoascript -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/library/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/library/common.js -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/library/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/library/utils.js -------------------------------------------------------------------------------- /Sketch Commands.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/Sketch Commands.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bomberstudios/sketch-commands/HEAD/appcast.xml --------------------------------------------------------------------------------