├── .appcast.xml ├── .gitignore ├── LICENSE ├── README.md ├── SketchTweaks.sketchplugin └── Contents │ ├── Resources │ ├── Propane.framework │ │ ├── Modules │ │ │ └── module.modulemap │ │ ├── Propane │ │ ├── Resources │ │ │ ├── Assets.car │ │ │ ├── Info.plist │ │ │ ├── Propane.storyboardc │ │ │ │ ├── C0A-ay-EAg-view-I9c-1a-WwH.nib │ │ │ │ │ ├── keyedobjects-110000.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ │ ├── ColorTagsVC.nib │ │ │ │ │ ├── keyedobjects-110000.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ │ ├── Eai-IA-31d-view-ISn-2Z-ecY.nib │ │ │ │ │ ├── keyedobjects-110000.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ │ ├── Info.plist │ │ │ │ ├── NSWindowController-6ti-8c-KfL.nib │ │ │ │ │ ├── keyedobjects-110000.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ │ ├── OGP-Jv-ghO-view-A2K-ea-jfB.nib │ │ │ │ │ ├── keyedobjects-110000.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ │ ├── Q0t-Zl-vCT-view-R37-92-goC.nib │ │ │ │ │ ├── keyedobjects-110000.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ │ ├── RrA-Ke-jAg-view-wmH-lc-h3y.nib │ │ │ │ │ ├── keyedobjects-110000.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ │ ├── cbS-Fr-FyK-view-fXP-MC-Fvn.nib │ │ │ │ │ ├── keyedobjects-110000.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ │ ├── collapseGroupsVC.nib │ │ │ │ │ ├── keyedobjects-110000.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ │ ├── dO8-HK-slE-view-qdG-KS-PHf.nib │ │ │ │ │ ├── keyedobjects-110000.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ │ ├── igF-NO-vR2-view-pjf-Ma-YFe.nib │ │ │ │ │ ├── keyedobjects-110000.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ │ └── rnO-z4-n5J-view-zvD-c7-4Co.nib │ │ │ │ │ ├── keyedobjects-110000.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ └── script.js │ │ └── _CodeSignature │ │ │ └── CodeResources │ └── icon.tiff │ └── Sketch │ ├── manifest.json │ └── script.js └── img ├── collapse-groups@2x.png ├── color-tags-filter@2x.png ├── color-tags@2x.png ├── icon.png ├── indent-guides@2x.png ├── runner.png ├── save-local@2x.png └── vector-handles@2x.png /.appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/.appcast.xml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/README.md -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Propane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Propane -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Assets.car -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Info.plist -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/C0A-ay-EAg-view-I9c-1a-WwH.nib/keyedobjects-110000.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/C0A-ay-EAg-view-I9c-1a-WwH.nib/keyedobjects-110000.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/C0A-ay-EAg-view-I9c-1a-WwH.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/C0A-ay-EAg-view-I9c-1a-WwH.nib/keyedobjects.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/ColorTagsVC.nib/keyedobjects-110000.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/ColorTagsVC.nib/keyedobjects-110000.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/ColorTagsVC.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/ColorTagsVC.nib/keyedobjects.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/Eai-IA-31d-view-ISn-2Z-ecY.nib/keyedobjects-110000.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/Eai-IA-31d-view-ISn-2Z-ecY.nib/keyedobjects-110000.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/Eai-IA-31d-view-ISn-2Z-ecY.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/Eai-IA-31d-view-ISn-2Z-ecY.nib/keyedobjects.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/Info.plist -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/NSWindowController-6ti-8c-KfL.nib/keyedobjects-110000.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/NSWindowController-6ti-8c-KfL.nib/keyedobjects-110000.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/NSWindowController-6ti-8c-KfL.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/NSWindowController-6ti-8c-KfL.nib/keyedobjects.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/OGP-Jv-ghO-view-A2K-ea-jfB.nib/keyedobjects-110000.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/OGP-Jv-ghO-view-A2K-ea-jfB.nib/keyedobjects-110000.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/OGP-Jv-ghO-view-A2K-ea-jfB.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/OGP-Jv-ghO-view-A2K-ea-jfB.nib/keyedobjects.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/Q0t-Zl-vCT-view-R37-92-goC.nib/keyedobjects-110000.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/Q0t-Zl-vCT-view-R37-92-goC.nib/keyedobjects-110000.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/Q0t-Zl-vCT-view-R37-92-goC.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/Q0t-Zl-vCT-view-R37-92-goC.nib/keyedobjects.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/RrA-Ke-jAg-view-wmH-lc-h3y.nib/keyedobjects-110000.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/RrA-Ke-jAg-view-wmH-lc-h3y.nib/keyedobjects-110000.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/RrA-Ke-jAg-view-wmH-lc-h3y.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/RrA-Ke-jAg-view-wmH-lc-h3y.nib/keyedobjects.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/cbS-Fr-FyK-view-fXP-MC-Fvn.nib/keyedobjects-110000.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/cbS-Fr-FyK-view-fXP-MC-Fvn.nib/keyedobjects-110000.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/cbS-Fr-FyK-view-fXP-MC-Fvn.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/cbS-Fr-FyK-view-fXP-MC-Fvn.nib/keyedobjects.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/collapseGroupsVC.nib/keyedobjects-110000.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/collapseGroupsVC.nib/keyedobjects-110000.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/collapseGroupsVC.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/collapseGroupsVC.nib/keyedobjects.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/dO8-HK-slE-view-qdG-KS-PHf.nib/keyedobjects-110000.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/dO8-HK-slE-view-qdG-KS-PHf.nib/keyedobjects-110000.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/dO8-HK-slE-view-qdG-KS-PHf.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/dO8-HK-slE-view-qdG-KS-PHf.nib/keyedobjects.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/igF-NO-vR2-view-pjf-Ma-YFe.nib/keyedobjects-110000.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/igF-NO-vR2-view-pjf-Ma-YFe.nib/keyedobjects-110000.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/igF-NO-vR2-view-pjf-Ma-YFe.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/igF-NO-vR2-view-pjf-Ma-YFe.nib/keyedobjects.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/rnO-z4-n5J-view-zvD-c7-4Co.nib/keyedobjects-110000.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/rnO-z4-n5J-view-zvD-c7-4Co.nib/keyedobjects-110000.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/rnO-z4-n5J-view-zvD-c7-4Co.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/Propane.storyboardc/rnO-z4-n5J-view-zvD-c7-4Co.nib/keyedobjects.nib -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/Resources/script.js -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/Propane.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Resources/icon.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Resources/icon.tiff -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /SketchTweaks.sketchplugin/Contents/Sketch/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/SketchTweaks.sketchplugin/Contents/Sketch/script.js -------------------------------------------------------------------------------- /img/collapse-groups@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/img/collapse-groups@2x.png -------------------------------------------------------------------------------- /img/color-tags-filter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/img/color-tags-filter@2x.png -------------------------------------------------------------------------------- /img/color-tags@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/img/color-tags@2x.png -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/img/icon.png -------------------------------------------------------------------------------- /img/indent-guides@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/img/indent-guides@2x.png -------------------------------------------------------------------------------- /img/runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/img/runner.png -------------------------------------------------------------------------------- /img/save-local@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/img/save-local@2x.png -------------------------------------------------------------------------------- /img/vector-handles@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abynim/sketch-tweaks/HEAD/img/vector-handles@2x.png --------------------------------------------------------------------------------