Advertisement
Guest User

Untitled

a guest
Aug 26th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. {
  2. “name” : “My Plugin”,
  3. “identifier” : “my.plugin”,
  4. “version” : “1.0”,
  5. “description” : “My First Sketch Plugin”,
  6. “authorEmail” : “your@email.com”,
  7. “author” : “Your Name”,
  8. “commands” : [
  9. {
  10. “script” : “MyScript.js”,
  11. “handler” : “onRun”,
  12. “shortcut” : “command shift y”,
  13. “name” : “Get Page Names”,
  14. “identifier” : “my.plugin.pagenames”
  15. },
  16. {
  17. “script” : “RotateArtboard.js”,
  18. “handler” : “onRun”,
  19. “shortcut” : “command shift u”,
  20. “name” : “Rotate Artboard”,
  21. “identifier” : “my.plugin.rotateartboard”
  22. }
  23. ],
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement