-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathmanifest.json
38 lines (38 loc) · 1.19 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "⚡️ Google Sheets content sync",
"description": "Sync content within a Google Sheets document, to text layers — based on their names",
"author": "David Williames",
"homepage": "https://github.com/DWilliames/Google-sheets-content-sync-sketch-plugin",
"version": "1.4",
"identifier": "com.davidwilliames.sketch-plugins.google-sheets-content-sync",
"compatibleVersion": 39,
"bundleVersion": 1,
"appcast": "https://raw.githubusercontent.com/DWilliames/Google-sheets-content-sync-sketch-plugin/master/.appcast.xml",
"commands": [
{
"name": "Import content",
"identifier": "importContent",
"shortcut": "control i",
"script": "main.js",
"handler": "importContent",
"icon": "icons\/icon-small.png",
"description": "Import content from a Google Sheets document."
},
{
"name": "Link Google Sheet",
"identifier": "linkSheet",
"shortcut": "shift control i",
"script": "main.js",
"handler": "run",
"icon": "icons\/icon-small.png",
"description": "Set the Google Sheets URL and import content."
}
],
"menu": {
"items": [
"linkSheet",
"-",
"importContent"
]
}
}