mirror of
https://github.com/vale981/tridactyl
synced 2025-03-11 13:06:38 -04:00
57 lines
939 B
JSON
57 lines
939 B
JSON
{
|
|
|
|
"manifest_version": 2,
|
|
"name": "Tridactyl",
|
|
"version": "1.0",
|
|
|
|
"background" : {
|
|
"scripts": ["background.js"]
|
|
},
|
|
|
|
"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"
|
|
}
|
|
}
|
|
|
|
}
|