tridactyl/src/manifest.json

58 lines
1.3 KiB
JSON
Raw Normal View History

2017-02-12 15:26:16 +00:00
{
2017-11-12 01:12:57 +00:00
"manifest_version": 2,
"name": "Tridactyl",
"version": "1.0.7",
2017-11-12 01:12:57 +00:00
"icons": {
"64": "static/logo/Tridactyl_64px.png",
"100": "static/logo/Tridactyl_100px.png",
"150": "static/logo/Tridactyl_150px.png"
},
"background": {
"scripts": [
"background.js"
]
},
"chrome_url_overrides": {
"newtab": "static/newtab.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"css": [
"static/content.css",
"static/hint.css"
],
"run_at": "document_start",
"match_about_blank": true
}
],
"web_accessible_resources": [
"static/commandline.html"
],
"permissions": [
"activeTab",
"bookmarks",
"contextMenus",
"clipboardWrite",
"clipboardRead",
"history",
"sessions",
"storage",
"tabs",
"topSites",
"webNavigation",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"applications": {
2017-11-12 01:12:57 +00:00
"gecko": {
"id": "tridactyl.vim@cmcaine.co.uk"
}
}
2017-11-12 01:12:57 +00:00
}