├── HandyTools.sketchplugin └── Contents │ └── Sketch │ ├── .idea │ ├── .name │ ├── Sketch.iml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml │ ├── algin.js │ ├── hidden_others.js │ ├── libs │ └── common.js │ ├── manifest.json │ ├── space.js │ ├── unhidden_all.js │ └── unhidden_all_artboard.js ├── README.md └── Screenshot ├── AlignTo.gif ├── dir_info.png ├── hidden.png └── spacing.gif /HandyTools.sketchplugin/Contents/Sketch/.idea/.name: -------------------------------------------------------------------------------- 1 | Sketch -------------------------------------------------------------------------------- /HandyTools.sketchplugin/Contents/Sketch/.idea/Sketch.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpatch/Handy-Tools/HEAD/HandyTools.sketchplugin/Contents/Sketch/.idea/Sketch.iml -------------------------------------------------------------------------------- /HandyTools.sketchplugin/Contents/Sketch/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpatch/Handy-Tools/HEAD/HandyTools.sketchplugin/Contents/Sketch/.idea/encodings.xml -------------------------------------------------------------------------------- /HandyTools.sketchplugin/Contents/Sketch/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpatch/Handy-Tools/HEAD/HandyTools.sketchplugin/Contents/Sketch/.idea/misc.xml -------------------------------------------------------------------------------- /HandyTools.sketchplugin/Contents/Sketch/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpatch/Handy-Tools/HEAD/HandyTools.sketchplugin/Contents/Sketch/.idea/modules.xml -------------------------------------------------------------------------------- /HandyTools.sketchplugin/Contents/Sketch/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpatch/Handy-Tools/HEAD/HandyTools.sketchplugin/Contents/Sketch/.idea/workspace.xml -------------------------------------------------------------------------------- /HandyTools.sketchplugin/Contents/Sketch/algin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpatch/Handy-Tools/HEAD/HandyTools.sketchplugin/Contents/Sketch/algin.js -------------------------------------------------------------------------------- /HandyTools.sketchplugin/Contents/Sketch/hidden_others.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpatch/Handy-Tools/HEAD/HandyTools.sketchplugin/Contents/Sketch/hidden_others.js -------------------------------------------------------------------------------- /HandyTools.sketchplugin/Contents/Sketch/libs/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpatch/Handy-Tools/HEAD/HandyTools.sketchplugin/Contents/Sketch/libs/common.js -------------------------------------------------------------------------------- /HandyTools.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpatch/Handy-Tools/HEAD/HandyTools.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /HandyTools.sketchplugin/Contents/Sketch/space.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpatch/Handy-Tools/HEAD/HandyTools.sketchplugin/Contents/Sketch/space.js -------------------------------------------------------------------------------- /HandyTools.sketchplugin/Contents/Sketch/unhidden_all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpatch/Handy-Tools/HEAD/HandyTools.sketchplugin/Contents/Sketch/unhidden_all.js -------------------------------------------------------------------------------- /HandyTools.sketchplugin/Contents/Sketch/unhidden_all_artboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpatch/Handy-Tools/HEAD/HandyTools.sketchplugin/Contents/Sketch/unhidden_all_artboard.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpatch/Handy-Tools/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot/AlignTo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpatch/Handy-Tools/HEAD/Screenshot/AlignTo.gif -------------------------------------------------------------------------------- /Screenshot/dir_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpatch/Handy-Tools/HEAD/Screenshot/dir_info.png -------------------------------------------------------------------------------- /Screenshot/hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpatch/Handy-Tools/HEAD/Screenshot/hidden.png -------------------------------------------------------------------------------- /Screenshot/spacing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webpatch/Handy-Tools/HEAD/Screenshot/spacing.gif --------------------------------------------------------------------------------