Created
August 27, 2016 17:52
-
-
Save marianomike/e3cde4c0a7640ac7804fc267b33afc8d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name" : "My Plugin", | |
"identifier" : "my.plugin", | |
"version" : "1.0", | |
"description" : "My First Sketch Plugin", | |
"authorEmail" : "[email protected]", | |
"author" : "Your Name", | |
"commands" : [ | |
{ | |
"script" : "MyScript.js", | |
"handler" : "onRun", | |
"shortcut" : "command shift y", | |
"name" : "Get Page Names", | |
"identifier" : "my.plugin.pagenames" | |
}, | |
{ | |
"script" : "RotateArtboard.js", | |
"handler" : "onRun", | |
"shortcut" : "command shift u", | |
"name" : "Rotate Artboard", | |
"identifier" : "my.plugin.rotateartboard" | |
} | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment