-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
47 lines (40 loc) · 947 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
43
44
45
46
47
{
"manifest_version": 2,
"name": "SourceCheck",
"version": "1.1",
"description": "Check the credibility of websites and the links they link to.",
"homepage_url": "https://github.com/dylan-mitchell/SourceCheck",
"icons": {
"48": "icons/check.png",
"96": "icons/check-96.png"
},
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"background": {
"scripts": ["js/background.js"],
"persistent": true
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["js/detect.js"],
"run_at": "document_end"
}
],
"browser_action": {
"default_icon": "icons/check.svg",
"theme_icons": [
{
"light": "icons/check-dark.png",
"dark": "icons/check.png",
"size": 48
}
],
"default_title": "SourceCheck",
"default_popup": "popup/sourceCheck.html"
},
"web_accessible_resources": ["data/sources.json"]
}