2017-02-12 15:26:16 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
"manifest_version": 2,
|
|
|
|
"name": "Tridactyl",
|
2017-11-09 13:10:43 +00:00
|
|
|
"version": "VERSIONHERE",
|
2017-02-12 15:26:16 +00:00
|
|
|
|
|
|
|
"background" : {
|
2017-10-02 00:59:51 +01:00
|
|
|
"scripts": ["background.js"]
|
2017-02-12 15:26:16 +00:00
|
|
|
},
|
|
|
|
|
2017-10-22 15:34:27 +01:00
|
|
|
"chrome_url_overrides" : {
|
|
|
|
"newtab": "static/newtab.html"
|
|
|
|
},
|
|
|
|
|
2017-02-14 15:41:53 +00:00
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"matches":["<all_urls>"],
|
2017-10-21 09:34:58 +01:00
|
|
|
"js":["content.js"],
|
2017-11-09 00:41:07 +00:00
|
|
|
"css":[
|
|
|
|
"static/content.css",
|
|
|
|
"static/hint.css"
|
|
|
|
],
|
2017-10-23 02:57:39 +01:00
|
|
|
"run_at":"document_start",
|
|
|
|
"match_about_blank": true
|
2017-02-14 15:41:53 +00:00
|
|
|
}
|
|
|
|
],
|
2017-03-02 17:41:05 +00:00
|
|
|
|
2017-09-29 18:29:36 +01:00
|
|
|
"web_accessible_resources": [
|
2017-10-02 00:59:51 +01:00
|
|
|
"static/commandline.html"
|
2017-09-29 18:29:36 +01:00
|
|
|
],
|
|
|
|
|
|
|
|
|
2017-02-14 13:01:46 +00:00
|
|
|
"permissions": [
|
|
|
|
"activeTab",
|
|
|
|
"bookmarks",
|
|
|
|
"contextMenus",
|
2017-10-19 12:42:49 +01:00
|
|
|
"clipboardWrite",
|
|
|
|
"clipboardRead",
|
2017-02-14 13:01:46 +00:00
|
|
|
"history",
|
|
|
|
"sessions",
|
|
|
|
"storage",
|
|
|
|
"tabs",
|
|
|
|
"topSites",
|
|
|
|
"webNavigation",
|
|
|
|
"webRequest",
|
|
|
|
"webRequestBlocking",
|
|
|
|
"<all_urls>"
|
2017-03-02 17:17:00 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
"applications": {
|
|
|
|
"gecko": {
|
2017-11-09 06:14:12 +00:00
|
|
|
"id": "tridactyl.vim@cmcaine.co.uk"
|
2017-03-02 17:17:00 +00:00
|
|
|
}
|
|
|
|
}
|
2017-02-12 15:26:16 +00:00
|
|
|
|
|
|
|
}
|