native-inserter/manifest.json

42 lines
856 B
JSON

{
"manifest_version": 2,
"name": "Native Inserter",
"version": "1.0.0",
"description": "An addon that inserts contents received from a native application into a page. Forked from clipboard-inserter. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY",
"icons": {},
"browser_specific_settings": {
"gecko": {
"id": "@native-inserter",
"strict_min_version": "50.0"
}
},
"permissions": [
"activeTab",
"storage",
"nativeMessaging",
"file://*/*"
],
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "icon/icon16.png",
"32": "icon/icon32.png",
"64": "icon/icon64.png"
},
"default_title": "Toggle Native Inserter"
},
"background": {
"page": "bg/index.html"
},
"options_ui": {
"page": "options.html"
}
}