20 lines
486 B
JSON
20 lines
486 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Viewer",
|
|
"version": "0.1",
|
|
"description": "Adds a red border to all webpages matching mozilla.org.",
|
|
"permissions": [
|
|
"activeTab",
|
|
"webRequest",
|
|
"webRequestBlocking",
|
|
"<all_urls>"
|
|
],
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"browser_action": {
|
|
"default_icon": "icon.png",
|
|
"default_title": "Click me!",
|
|
"default_popup": "popup/popup.html"
|
|
}
|
|
} |