-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
42 lines (42 loc) · 857 Bytes
/
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
{
"manifest_version": 3,
"default_locale": "en",
"name": "__MSG_extName__",
"description": "__MSG_extDesc__",
"version": "1.0.5",
"icons": {
"16": "images/logo.png",
"32": "images/logo.png",
"48": "images/logo.png",
"128": "images/logo.png"
},
"action": {
"default_icon": "images/logo.png",
"default_title": "__MSG_extName__",
"default_popup": "./popup.html"
},
"permissions": [],
"host_permissions": [
"https://github.com/*"
],
"content_scripts": [
{
"match_about_blank": true,
"matches": [
"https://github.com/*"
],
"js": [
"content.js"
],
"css": [
"scss/dist/styles.css"
]
}
],
"web_accessible_resources": [
{
"resources": [ "*.png", "*.js", "*.css" ],
"matches": [ "https://github.com/*" ]
}
]
}