remwharead/browser-plugins/webextension/manifest.json

62 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2019-05-20 19:23:16 +02:00
{
"manifest_version": 2,
"name": "remwharead",
2020-01-27 10:35:41 +01:00
"version": "0.5.0",
2019-05-20 19:23:16 +02:00
"description": "Integrates remwharead into your Browser.",
"homepage_url": "https://schlomp.space/tastytea/remwharead",
2019-05-21 13:59:35 +02:00
"icons":
{
"16": "icon_dark.svg"
},
2019-05-20 19:23:16 +02:00
"applications":
{
"gecko":
{
"id": "remwharead@tastytea.de",
2019-05-21 15:02:10 +02:00
"strict_min_version": "57.0"
2019-05-20 19:23:16 +02:00
}
},
"permissions":
[
"activeTab",
"nativeMessaging",
"storage"
2019-05-20 19:23:16 +02:00
],
"browser_action":
{
"default_title": "remwharead",
2019-05-24 11:55:22 +02:00
"default_popup": "popup.html",
2019-05-21 13:59:35 +02:00
"browser_style": true,
"default_icon": "icon_dark.svg",
"theme_icons":
[{ // Dark means dark text in Firefox. 🙄
"dark": "icon_light.svg",
"light": "icon_dark.svg",
"size": 16
}]
2019-05-20 19:23:16 +02:00
},
"options_ui":
{
"page": "options.html",
"browser_style": true
},
2019-05-20 19:23:16 +02:00
"commands":
{
2019-05-24 13:43:15 +02:00
"_execute_browser_action":
2019-05-20 19:23:16 +02:00
{
"suggested_key":
{
"default": "Ctrl+Shift+S"
},
2019-05-24 13:43:15 +02:00
"description": "Open “Add URI”-popup."
2019-05-20 19:23:16 +02:00
}
}
}