-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathmanifest.json
More file actions
33 lines (33 loc) · 851 Bytes
/
Copy pathmanifest.json
File metadata and controls
33 lines (33 loc) · 851 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
{
"name": "Change Colors",
"version": "2.144",
"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://*/*", "file://*/*"],
"js": ["convert.js"],
"all_frames": true
}
],
"minimum_chrome_version": "4.0",
"options_page": "options.html",
"permissions":
[
"tabs",
"http://*/*",
"https://*/*"
]
}