-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
manifest.json
50 lines (50 loc) · 1.2 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
49
50
{
"manifest_version": 3,
"name": "Gloc",
"short_name": "Gloc",
"author": "Kas Elvirov",
"description": "Github Gloc - counts locs on GitHub pages",
"version": "10.0.14",
"action": {
"default_icon": {
"16": "img/icon16.png",
"32": "img/icon32.png",
"64": "img/icon64.png",
"128": "img/icon128.png"
},
"default_title": "Github Gloc - counts locs on GitHub pages",
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"*://github.com/*"
],
"js": [
"src/content.tsx"
],
"run_at": "document_idle"
}
],
"permissions": [
"storage"
],
"host_permissions": [
"*://*.github.com/*"
],
"icons": {
"16": "img/icon16.png",
"32": "img/icon32.png",
"64": "img/icon64.png",
"128": "img/icon128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{bc2166c4-e7a2-46d5-ad9e-342cef57f1f7}"
}
}
}