tridactyl/src/manifest.json

57 lines
965 B
JSON
Raw Normal View History

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" : {
"scripts": ["background.js"]
2017-02-12 15:26:16 +00:00
},
"chrome_url_overrides" : {
"newtab": "static/newtab.html"
},
2017-02-14 15:41:53 +00:00
"content_scripts": [
{
"matches":["<all_urls>"],
"js":["content.js"],
"css":[
"static/content.css",
"static/hint.css"
],
"run_at":"document_start",
"match_about_blank": true
2017-02-14 15:41:53 +00:00
}
],
2017-03-02 17:41:05 +00:00
"web_accessible_resources": [
"static/commandline.html"
],
"permissions": [
"activeTab",
"bookmarks",
"contextMenus",
"clipboardWrite",
"clipboardRead",
"history",
"sessions",
"storage",
"tabs",
"topSites",
"webNavigation",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"applications": {
"gecko": {
"id": "tridactyl.vim@cmcaine.co.uk"
}
}
2017-02-12 15:26:16 +00:00
}