forked from chimera-detector/Extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
38 lines (38 loc) · 1.21 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
{
"name": "CHIMERA for Chrome",
"version": "1.0",
"author": "Seounghan Song",
"manifest_version": 2,
"description": "Shows what stance the article having against their headline",
"permissions": [
"https://edition.cnn.com/*", "http://edition.cnn.com/*", "https://127.0.0.1:3000/*", "https://www.facebook.com/*", "http://www.facebook.com/*", "activeTab", "storage"
],
"web_accessible_resources": ["locales/*"],
"browser_action": {
"default_icon": {
"16": "media/icon16.png",
"128": "media/icon128.png"
},
"default_popup": "src/popup.html",
"default_title": "CHIMERA Article Analyzer"
},
"icons": {
"16": "media/icon16.png",
"128": "media/icon128.png"
},
"content_security_policy": "script-src 'self'; object-src 'self'",
"homepage_url": "https://github.com/chimera-detector/Extension",
"content_scripts": [{
"matches": ["https://edition.cnn.com/*", "http://edition.cnn.com/*"],
"js": ["src/cnn.js"],
"run_at": "document_idle",
"all_frames": false
},
{
"matches": ["http://www.facebook.com/*", "https://www.facebook.com/*"],
"js": ["src/facebook.js"],
"run_at": "document_idle",
"all_frames": false
}
]
}