forked from Strav/Change-Colors
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
35 lines (35 loc) · 942 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
31
32
33
34
35
{
"name": "Change Colors",
"version": "2.1",
"description": "Change pages styling according to the user's preferences.",
"icons": { "16": "icons/colors_icons.png",
"32": "icons/colors_icons.png",
"48": "icons/colors_icons.png",
"128": "icons/colors_icons.png" },
"page_action":
{
"default_icon": "icons/colors_icons.png",
"default_title": "Change Colors",
"popup": "popup.html"
},
"background_page": "background_page.html",
"content_scripts":
[
{
"run_at": "document_start",
"matches": ["http://*/*", "https://*/*", "ftp://*/*"],
"js": ["convert.js"],
"all_frames": true
}
],
"minimum_chrome_version": "4.0",
"options_page": "options.html",
// For testing updates backward compatibility.
// "update_url": "http://strav/ChangeColors/updates.xml",
"permissions":
[
"tabs",
"http://*/*",
"https://*/*"
]
}