33 lines
778 B
JSON
33 lines
778 B
JSON
{
|
|
"name": "platypush",
|
|
"description": "Web extension for interacting with one or more Platypush instances via browser",
|
|
"version": "0.1.1",
|
|
"manifest_version": 2,
|
|
"icons": {
|
|
"16": "icons/icon-16.png",
|
|
"32": "icons/icon-32.png",
|
|
"48": "icons/icon-48.png",
|
|
"64": "icons/icon-64.png"
|
|
},
|
|
"permissions": ["activeTab", "storage", "notifications", "clipboardRead", "clipboardWrite", "contextMenus", "<all_urls>"],
|
|
|
|
"browser_action": {
|
|
"default_title": "platypush",
|
|
"default_popup": "popup/popup.html"
|
|
},
|
|
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"options_ui": {
|
|
"page": "options/options.html",
|
|
"chrome_style": true
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://*/*"],
|
|
"js": ["content.js"]
|
|
}
|
|
]
|
|
}
|