-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
47 lines (42 loc) · 901 Bytes
/
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
{
"applications": {
"gecko": {
"id": "polrff@kiot",
"strict_min_version": "42.0"
}
},
"title": "polrff",
"author": "Hans-Ulrich Koeth",
"supportmail": "[email protected]",
"icon": "icons/icon-32.png",
"description": "Shorten URLs with Polr",
"manifest_version": 2,
"name": "polrff",
"version": "0.6",
"browser_action": {
"browser_style": true,
"default_popup": "popup/shorten.html",
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png"
}
},
"options_ui": {
"page": "settings/options.html",
"browser_style": true
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["copytoclipboard.js"]
}],
"permissions": [
"storage",
"contextMenus",
"tabs",
"notifications",
"clipboardWrite"
],
"background": {
"scripts": ["background.js"]
}
}