forked from devcongress/nestedloop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
33 lines (32 loc) · 942 Bytes
/
manifest.json
File metadata and controls
33 lines (32 loc) · 942 Bytes
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
{
// setting the manifest version
"manifest_version": 2,
"name": "Nested Loops",
"version": "0.1",
"description": "Get all news posted on DevCongress from your address bar.",
"icons": { "16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png" },
// "default_locale": "en",
//added content_security_policy as a way to allow cross domain downloads of js scripts
"content_security_policy": "script-src 'self' https://www.google.com; object-src 'self'",
"browser_action": {
"default_icon": "icons/icon16.png",
// "default_title": "Nested Loops",
"default_popup": "src/popup.html"
},
// PERMISSIONS
"permissions": [
"http://*/",
"idle",
"tabs",
],
// "options_page": "options.html",
"content_scripts": [
{
"matches": ["http://news.devcongress.com/"],
"css": ["src/style.css"],
"js": ["src/popup.js"]
}
]
}