-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
49 lines (49 loc) · 1.09 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "GuidGenerator",
"short_name": "GuidGen",
"version": "1.2.0",
"manifest_version": 2,
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"generateUuid.js",
"content.js"
]
}
],
"background": {
"scripts": [
"generateUuid.js",
"background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html",
"default_title": "GuidGenerator"
},
"commands": {
"generate": {
"suggested_key": {
"default": "Alt+Shift+G"
},
"description": "Generate a Guid"
},
"copyGuid": {
"suggested_key": {
"default": "Alt+Shift+C"
},
"description": "Copy a Guid to clipboard"
}
},
"icons": {
"16" : "images/gg16.png",
"48" : "images/gg48.png",
"128": "images/gg128.png"
},
"permissions": [
"activeTab",
"clipboardWrite"
]
}