-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathmanifest.template.json
57 lines (57 loc) · 1.11 KB
/
manifest.template.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
51
52
53
54
55
56
57
{
"name": "Lovely forks",
"version": "3.7.3",
"manifest_version": 3,
"description": "Show notable forks of GitHub projects.",
"homepage_url": "https://github.com/musically-ut/lovely-forks",
"icons": {
"128": "webext/icons/Heart_and_fork_inside_128.png"
},
"web_accessible_resources": [
{
"resources": [
"webext/icons/star.svg",
"webext/icons/flame.svg"
],
"matches": [
"*://github.com/*"
]
}
],
"options_ui": {
"page": "webext/options_ui/options.html"
},
"host_permissions": [
"*://github.com/*",
"*://api.github.com/*"
],
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*://github.com/*"
],
"css": [
"webext/data/style.css"
],
"run_at": "document_start"
},
{
"matches": [
"*://github.com/*"
],
"js": [
"webext/data/contentscript.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}