tridactyl/src/manifest.json

69 lines
1.6 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",
2018-05-13 15:31:45 +01:00
"version": "1.12.0",
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": [
2018-05-20 13:17:28 +01:00
"static/css/cleanslate.css",
"static/css/content.css",
"static/css/hint.css",
"static/css/viewsource.css"
2017-11-12 01:12:57 +00:00
],
"run_at": "document_start",
"match_about_blank": true
}
],
2018-05-13 15:20:47 +01:00
"content_security_policy": "script-src 'unsafe-eval' 'self'; object-src 'self'",
2017-11-12 01:12:57 +00:00
"web_accessible_resources": [
2017-11-23 01:56:56 +00:00
"static/commandline.html",
"static/defaultFavicon"
2017-11-12 01:12:57 +00:00
],
"permissions": [
"activeTab",
"bookmarks",
"browsingData",
2017-11-12 01:12:57 +00:00
"contextMenus",
"contextualIdentities",
"cookies",
2017-11-12 01:12:57 +00:00
"clipboardWrite",
"clipboardRead",
"downloads",
2017-11-12 01:12:57 +00:00
"history",
"sessions",
"storage",
"tabs",
"topSites",
"nativeMessaging",
2017-11-12 01:12:57 +00:00
"webNavigation",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"applications": {
2017-11-12 01:12:57 +00:00
"gecko": {
"id": "tridactyl.vim@cmcaine.co.uk",
"strict_min_version": "54.0"
2017-11-12 01:12:57 +00:00
}
}
2018-05-20 13:17:28 +01:00
}