-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
executable file
·48 lines (48 loc) · 949 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
48
{
"manifest_version": 2,
"name": "Open in new tab",
"version": "0.0.13",
"author": "Ramkumar K R",
"description": "Open links in new tab for a list of specified domains. Also open bookmarks in a new tab",
"permissions": [
"activeTab",
"storage",
"<all_urls>"
],
"optional_permissions": [
"browserSettings"
],
"browser_action": {
"browser_style": false,
"default_icon": "icon-dark.svg",
"default_popup": "popup.html",
"theme_icons": [{
"light": "icon-light.svg",
"dark": "icon-dark.svg",
"size": 32
}]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"tabify.js"
],
"run_at": "document_idle"
}
],
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"application": {
"gecko": {
"strict_min_version": "61.0"
}
},
"icons": {
"52": "icon.png"
}
}