platypush-webext/src/manifest.json

36 lines
951 B
JSON
Raw Normal View History

2020-06-12 01:03:46 +02:00
{
"name": "platypush",
2020-06-30 18:20:06 +02:00
"description": "Web extension for interacting with Platypush instances via browser and creating custom browser actions",
2020-06-30 18:22:09 +02:00
"version": "0.1.4",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
2020-06-12 01:03:46 +02:00
"manifest_version": 2,
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
2020-06-30 18:20:06 +02:00
"64": "icons/icon-64.png",
"128": "icons/icon-128.png",
"256": "icons/icon-256.png"
2020-06-12 01:03:46 +02:00
},
2020-06-29 02:21:00 +02:00
"permissions": ["activeTab", "storage", "notifications", "clipboardRead", "clipboardWrite", "contextMenus", "<all_urls>"],
2020-06-12 01:03:46 +02:00
"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"]
2020-06-12 01:03:46 +02:00
}
]
}