-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
53 lines (53 loc) · 1.23 KB
/
Copy pathmanifest.json
File metadata and controls
53 lines (53 loc) · 1.23 KB
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
49
50
51
52
53
{
"manifest_version": 3,
"name": "Persitent Containers",
"version": "2.0.0",
"author": "navchandar",
"description": "Makes new tabs inherit the container of the currently active tab, just like Chromium browsers",
"permissions": [
"tabs",
"cookies",
"contextualIdentities",
"storage",
"tabGroups"
],
"optional_permissions": [],
"externally_connectable": {
"ids": ["@testpilot-containers"]
},
"action": {
"default_icon": {
"16": "icons/icon.svg",
"32": "icons/icon.svg"
},
"default_title": "Persistent Containers Settings",
"default_popup": "popup.html"
},
"icons": {
"16": "icons/icon.svg",
"32": "icons/icon.svg",
"48": "icons/icon.svg",
"128": "icons/icon.svg"
},
"background": {
"scripts": ["background.js"],
"type": "module"
},
"commands": {
"open-new-tab-without-container": {
"suggested_key": {
"default": "Alt+T"
},
"description": "Open a new tab without Container"
}
},
"browser_specific_settings": {
"gecko": {
"id": "persistent-containers-mv3@navchandar.github.io",
"strict_min_version": "142.0",
"data_collection_permissions": {
"required": ["none"]
}
}
}
}