-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
48 lines (40 loc) · 792 Bytes
/
manifest.json
File metadata and controls
48 lines (40 loc) · 792 Bytes
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 Links in Tabs",
"version": "1.1.3",
"author": "André Veríssimo",
"default_locale": "en",
"applications": {
"gecko": {
"id": "open.links.in.tabs@gmail.com",
"strict_min_version": "57.0"
}
},
"description": "Open Links in Tabs",
"icons": {
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"permissions": [
"contextMenus",
"storage"
],
"background": {
"scripts": [
"src/defaults.js",
"src/background.js"
]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"all_frames": true,
"js": [ "src/content.js" ],
"run_at": "document_start"
}
],
"options_ui": {
"page": "options.html",
"browser_style": true
}
}