forked from c-yan/open-all-urls-in-the-clipboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
33 lines (33 loc) · 778 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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.1.1",
"homepage_url": "https://github.com/c-yan/open-all-urls-in-the-clipboard",
"default_locale": "en",
"applications": {
"gecko": {
"id": "{ada2fe27-1a39-4a43-9174-7b86bfb37b3e}",
"strict_min_version": "60.0"
}
},
"background": {
"scripts": [
"background.js"
]
},
"commands": {
"open-urls-in-clipboard": {}
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"permissions": [
"activeTab",
"tabs",
"menus",
"clipboardRead",
"storage"
]
}