-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
44 lines (44 loc) · 971 Bytes
/
manifest.json
File metadata and controls
44 lines (44 loc) · 971 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
{
"manifest_version": 2,
"name": "Github Container Auto Switcher",
"author": "Smiling Jumbos",
"incognito": "not_allowed",
"description": "Github Container Auto Switcher",
"version": "0.0.1",
"developer": {
"name": "Smiling Jumbos",
"url": "https://github.com/smilingjumbos/github_container_auto_switcher"
},
"icons": {
"48": "img/logo.svg",
"96": "img/logo.svg"
},
"browser_action": {
"browser_style": true,
"default_title": "Github Container Auto Switcher",
"default_icon": "img/logo.svg",
"default_popup": "popup.html",
"theme_icons": [
{
"light": "img/logo.svg",
"dark": "img/logo_dark.svg",
"size": 32
}
]
},
"permissions": [
"tabs",
"activeTab",
"cookies",
"contextualIdentities",
"webRequest",
"webRequestBlocking",
"*://github.com/*"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
}
}