-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
36 lines (36 loc) · 892 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
{
"manifest_version": 3,
"name": "GH Lines",
"author": {
"email": "[email protected]"
},
"description": "View line-counts of source files in the GitHub file tree",
"version": "1.1.1",
"action": {
"default_title": "Click to turn on or off",
"default_icon": {
"16": "./res/favicon-16x16.png",
"32": "./res/favicon-32x32.png",
"48": "./res/android-icon-48x48.png",
"96": "./res/favicon-96x96.png",
"128": "./res/favicon-128x128.png"
}
},
"permissions": [
"tabs",
"storage"
],
"content_scripts": [
{
"matches": [
"https://github.com/**/*"
],
"js": [
"./content.js"
]
}
],
"background": {
"service_worker": "./background.js"
}
}