-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathmanifest.json
30 lines (29 loc) · 1004 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
{
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": "Icon/icon-19.png",
"default_popup": "popup.html",
"default_title": "Auto Refresh Plus"
},
"content_scripts": [ {
"all_frames": false,
"js": [ "js/content_script.js", "js/blank.js"],
"matches": [ "http://*/*", "https://*/*" ],
"run_at": "document_idle"
}],
"description": "Refresh a page automatically and get notified when keywords change.",
"icons": {
"128": "Icon/icon-64.png",
"48": "Icon/icon-48.png"
},
"manifest_version": 2,
"name": "Auto Refresh Plus",
"options_page": "options.html",
"permissions": [ "tabs", "http://*/*", "https://*/*", "webNavigation","storage", "notifications"],
"version": "6.3.0",
"homepage_url":"https://github.com/lomholdt/arp",
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"web_accessible_resources": [ "blank.html" ]
}