-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
46 lines (46 loc) · 896 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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "1.1.0",
"default_locale": "en",
"description": "__MSG_extensionDescription__",
"developer": {
"name": "Inirit",
"url": "https://github.com/Inirit"
},
"homepage_url": "https://github.com/Inirit/Reuploader",
"permissions": [
"<all_urls>",
"contextMenus",
"storage",
"clipboardWrite",
"notifications",
"identity"
],
"background": {
"page": "dist/background/background.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"node_modules/webextension-polyfill/dist/browser-polyfill.js",
"dist/content/js/content.bundle.js"
]
}
],
"options_ui": {
"page": "dist/options/options.html",
"browser_style": true
},
"icons": {
"48": "./images/up_arrow_48.png"
},
"applications": {
"gecko": {
"id": "{c2756713-0271-4423-b922-b2dac90f6690}"
}
}
}