blob: 64fa4ea3b3165f42af6cf2494d038f26ec5c868a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
"manifest_version": 2,
"name": "Lamp",
"description": "If you turn off this lamp it will darken your browser!",
"version": "1.0",
"author": "joak",
"permissions": ["activeTab"],
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_title": "Turns off the light!"
},
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"64": "icon-64.png"
},
"content_scripts": [{
"matches": ["<all_urls>"],
"css": ["lamp.css"]
}]
}
|