-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
39 lines (38 loc) · 792 Bytes
/
manifest.json
File metadata and controls
39 lines (38 loc) · 792 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
34
35
36
37
38
39
{
"name": "Devscreen",
"short_name": "devscreen",
"description": "Replace your new page tab with a personal dashboard featuring daily updates from top developer blogs",
"manifest_version": 2,
"version": "1.0.1",
"chrome_url_overrides": {
"newtab": "index.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"activeTab",
"storage",
"geolocation"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": [
"https://quiet-bayou-45541.herokuapp.com/",
"https://extreme-ip-lookup.com/json/"
],
"js": ["content.js"]
}
]
}