tridactyl/addon/manifest.json
Oliver Blanthorn 32491df069
fix manifest
2017-07-16 16:42:55 +01:00

48 lines
768 B
JSON

{
"manifest_version": 2,
"name": "Tridactyl",
"version": "1.0",
"background" : {
"scripts": ["main.js"]
},
"content_scripts": [
{
"matches":["<all_urls>"],
"js":["content.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"
}
}
}