-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
30 lines (30 loc) · 784 Bytes
/
manifest.json
File metadata and controls
30 lines (30 loc) · 784 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
{
"manifest_version": 2,
"name": "Link and Tab Manager",
"version": "1.1",
"description": "Right-click context menu to open links in a new or existing window as a new tab, or move entire tabs to a specific Firefox window.",
"permissions": [
"contextMenus",
"tabs"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"icons": {
"48": "icons/LinkAndTabManager_48.png",
"512": "icons/LinkAndTabManager.png"
},
"browser_specific_settings": {
"gecko": {
"id": "linkandtabmanager@github.com"
}
},
"browser_action": {
"default_icon": {
"48": "icons/LinkAndTabManager_48.png"
},
"default_title": "Link and Tab Manager",
"default_popup": "popup.html"
}
}