tridactyl/src/manifest.json
2017-10-22 15:34:27 +01:00

61 lines
1,009 B
JSON

{
"manifest_version": 2,
"name": "Tridactyl",
"version": "1.0",
"background" : {
"scripts": ["background.js"]
},
"chrome_url_overrides" : {
"newtab": "static/newtab.html"
},
"content_scripts": [
{
"matches":["<all_urls>"],
"js":["content.js"],
"run_at":"document_end"
}
],
"web_accessible_resources": [
"static/commandline.html"
],
"permissions": [
"activeTab",
"alarms",
"bookmarks",
"contextMenus",
"cookies",
"clipboardWrite",
"clipboardRead",
"downloads",
"downloads.open",
"find",
"history",
"identity",
"idle",
"management",
"nativeMessaging",
"notifications",
"sessions",
"storage",
"tabs",
"topSites",
"webNavigation",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"applications": {
"gecko": {
"id": "tridactyl@cmcaine.co.uk"
}
}
}