├── .gitignore ├── LICENSE.md ├── README.md ├── Screenshots └── sketch-action.gif ├── SketchAction.sketchplugin └── Contents │ ├── Resources │ ├── SketchActionFramework.framework │ │ ├── Headers │ │ │ ├── FTGConstants.h │ │ │ ├── FTGManager.h │ │ │ ├── FTGWindow.h │ │ │ └── SketchActionFramework.h │ │ ├── Modules │ │ │ └── module.modulemap │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ └── search@2x.png │ │ ├── SketchActionFramework │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── FTGConstants.h │ │ │ │ ├── FTGManager.h │ │ │ │ ├── FTGWindow.h │ │ │ │ └── SketchActionFramework.h │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── Resources │ │ │ │ ├── Info.plist │ │ │ │ └── search@2x.png │ │ │ ├── SketchActionFramework │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── Current │ │ │ ├── Headers │ │ │ ├── FTGConstants.h │ │ │ ├── FTGManager.h │ │ │ ├── FTGWindow.h │ │ │ └── SketchActionFramework.h │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ └── search@2x.png │ │ │ ├── SketchActionFramework │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ └── search@2x.png │ └── Sketch │ ├── MochaJSDelegate.js │ ├── class.js │ ├── helper.js │ ├── main.js │ ├── manifest.json │ └── ui.js ├── SketchActionApp ├── SketchActionApp.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── SketchActionApp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── SketchActionFramework ├── FTGConstants.h ├── FTGHandler.h ├── FTGHandler.m ├── FTGMainView.h ├── FTGMainView.m ├── FTGManager.h ├── FTGManager.m ├── FTGMenuItem.h ├── FTGMenuItem.m ├── FTGRowView.h ├── FTGRowView.m ├── FTGWindow.h ├── FTGWindow.m ├── NSString+Extensions.h ├── NSString+Extensions.m ├── SketchActionFramework.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── SketchActionFramework.xcscheme ├── SketchActionFramework ├── Info.plist └── SketchActionFramework.h └── search@2x.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/sketch-action.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/Screenshots/sketch-action.gif -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Headers/FTGConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Headers/FTGConstants.h -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Headers/FTGManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Headers/FTGManager.h -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Headers/FTGWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Headers/FTGWindow.h -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Headers/SketchActionFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Headers/SketchActionFramework.h -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Resources/Info.plist -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Resources/search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Resources/search@2x.png -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/SketchActionFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/SketchActionFramework -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/A/Headers/FTGConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/A/Headers/FTGConstants.h -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/A/Headers/FTGManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/A/Headers/FTGManager.h -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/A/Headers/FTGWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/A/Headers/FTGWindow.h -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/A/Headers/SketchActionFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/A/Headers/SketchActionFramework.h -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/A/Resources/search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/A/Resources/search@2x.png -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/A/SketchActionFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/A/SketchActionFramework -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/Current/Headers/FTGConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/Current/Headers/FTGConstants.h -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/Current/Headers/FTGManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/Current/Headers/FTGManager.h -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/Current/Headers/FTGWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/Current/Headers/FTGWindow.h -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/Current/Headers/SketchActionFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/Current/Headers/SketchActionFramework.h -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/Current/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/Current/Modules/module.modulemap -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/Current/Resources/search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/Current/Resources/search@2x.png -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/Current/SketchActionFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/Current/SketchActionFramework -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/Current/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/SketchActionFramework.framework/Versions/Current/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Resources/search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Resources/search@2x.png -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Sketch/MochaJSDelegate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Sketch/MochaJSDelegate.js -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Sketch/class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Sketch/class.js -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Sketch/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Sketch/helper.js -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Sketch/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Sketch/main.js -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /SketchAction.sketchplugin/Contents/Sketch/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchAction.sketchplugin/Contents/Sketch/ui.js -------------------------------------------------------------------------------- /SketchActionApp/SketchActionApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionApp/SketchActionApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SketchActionApp/SketchActionApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionApp/SketchActionApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SketchActionApp/SketchActionApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionApp/SketchActionApp/AppDelegate.h -------------------------------------------------------------------------------- /SketchActionApp/SketchActionApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionApp/SketchActionApp/AppDelegate.m -------------------------------------------------------------------------------- /SketchActionApp/SketchActionApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionApp/SketchActionApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SketchActionApp/SketchActionApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionApp/SketchActionApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SketchActionApp/SketchActionApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionApp/SketchActionApp/Info.plist -------------------------------------------------------------------------------- /SketchActionApp/SketchActionApp/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionApp/SketchActionApp/ViewController.h -------------------------------------------------------------------------------- /SketchActionApp/SketchActionApp/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionApp/SketchActionApp/ViewController.m -------------------------------------------------------------------------------- /SketchActionApp/SketchActionApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionApp/SketchActionApp/main.m -------------------------------------------------------------------------------- /SketchActionFramework/FTGConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/FTGConstants.h -------------------------------------------------------------------------------- /SketchActionFramework/FTGHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/FTGHandler.h -------------------------------------------------------------------------------- /SketchActionFramework/FTGHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/FTGHandler.m -------------------------------------------------------------------------------- /SketchActionFramework/FTGMainView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/FTGMainView.h -------------------------------------------------------------------------------- /SketchActionFramework/FTGMainView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/FTGMainView.m -------------------------------------------------------------------------------- /SketchActionFramework/FTGManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/FTGManager.h -------------------------------------------------------------------------------- /SketchActionFramework/FTGManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/FTGManager.m -------------------------------------------------------------------------------- /SketchActionFramework/FTGMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/FTGMenuItem.h -------------------------------------------------------------------------------- /SketchActionFramework/FTGMenuItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/FTGMenuItem.m -------------------------------------------------------------------------------- /SketchActionFramework/FTGRowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/FTGRowView.h -------------------------------------------------------------------------------- /SketchActionFramework/FTGRowView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/FTGRowView.m -------------------------------------------------------------------------------- /SketchActionFramework/FTGWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/FTGWindow.h -------------------------------------------------------------------------------- /SketchActionFramework/FTGWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/FTGWindow.m -------------------------------------------------------------------------------- /SketchActionFramework/NSString+Extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/NSString+Extensions.h -------------------------------------------------------------------------------- /SketchActionFramework/NSString+Extensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/NSString+Extensions.m -------------------------------------------------------------------------------- /SketchActionFramework/SketchActionFramework.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/SketchActionFramework.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SketchActionFramework/SketchActionFramework.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/SketchActionFramework.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SketchActionFramework/SketchActionFramework.xcodeproj/xcshareddata/xcschemes/SketchActionFramework.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/SketchActionFramework.xcodeproj/xcshareddata/xcschemes/SketchActionFramework.xcscheme -------------------------------------------------------------------------------- /SketchActionFramework/SketchActionFramework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/SketchActionFramework/Info.plist -------------------------------------------------------------------------------- /SketchActionFramework/SketchActionFramework/SketchActionFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/SketchActionFramework/SketchActionFramework.h -------------------------------------------------------------------------------- /SketchActionFramework/search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Sketch-Action/HEAD/SketchActionFramework/search@2x.png --------------------------------------------------------------------------------