-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
50 lines (50 loc) · 1.39 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
{
"name": "Chrome Extension Lie Detector",
"version": "1.0",
"description": "Can you trust this news source?",
"manifest_version": 2,
"icons": {
"16": "/resources/images/icon_16.png",
"32": "/resources/images/icon_32.png",
"48": "/resources/images/icon_48.png",
"128": "/resources/images/icon_128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"/src/content.js",
"/vendor/jquery/jquery-3.3.1.min.js",
"/vendor/bootstrap/bootstrap.min.js",
"/vendor/easypie/jquery.easypiechart.min.js",
"/src/popup/popup.js"
],
"css": [
"vendor/bootstrap/bootstrap.min.css",
"vendor/animate/animate.css"
]
}
],
"background": {
"scripts": [
"/vendor/jquery/jquery-3.3.1.min.js",
"src/background.js"
],
"persistent": false
},
"content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
"permissions": [
"https://raw.githubusercontent.com/BigMcLargeHuge/opensources/master/sources/sources.json",
"activeTab",
"declarativeContent",
"storage",
"http://ec2-34-201-117-49.compute-1.amazonaws.com"
],
"browser_action": {
"default_icon": "resources/images/icon.png",
"default_popup": "src/popup/popup.html"
},
"web_accessible_resources": [ "https://www.patreon.com/user?u=14707516" ]
}