-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
48 lines (47 loc) · 1.06 KB
/
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
{
"author": "igorlogius",
"homepage_url": "https://github.com/igorlogius/open-in-temp-container",
"background": { "scripts": ["background.js"] },
"browser_action": {
"default_area": "navbar",
"theme_icons": [
{
"light": "dark.png",
"dark": "light.png",
"size": 512
}
]
},
"commands": {
"_execute_browser_action": {
"description": "Toolbar Action"
},
"opennewtab": {
"description": "Open newtab in temp container"
},
"openinsame": {
"description": "Open newtab in same container as current tab"
}
},
"description": "Open the page,tab,link or bookmark in a new temporary container tab",
"icons": {
"512": "icon.svg"
},
"manifest_version": 2,
"name": "Open in Temp Container",
"options_ui": {
"page": "options.html"
},
"permissions": [
"<all_urls>",
"contextualIdentities",
"cookies",
"menus",
"storage",
"tabs",
"webRequest",
"webRequestBlocking"
],
"optional_permissions": ["bookmarks", "history"],
"version": "1.1.51"
}