tridactyl/addon/manifest.json
Colin Caine 85d40edd70 Add application field to manifest.json.
This is for runtime.connectNative.
2017-03-02 17:37:38 +00:00

48 lines
823 B
JSON

{
"manifest_version": 2,
"name": "Tridactyl",
"version": "1.0",
"background" : {
"scripts": ["main.js", "exStrParser.js", "funcParser.js"]
},
"content_scripts": [
{
"matches":["<all_urls>"],
"js":["content.js", "link_hinting.js"]
}
],
"permissions": [
"activeTab",
"alarms",
"bookmarks",
"contextMenus",
"cookies",
"downloads",
"downloads.open",
"history",
"identity",
"idle",
"management",
"nativeMessaging",
"notifications",
"sessions",
"storage",
"tabs",
"topSites",
"webNavigation",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"applications": {
"gecko": {
"id": "tridactyl@cmcaine.co.uk"
}
}
}