remwharead/browser-plugins/webextension/manifest.json

55 lines
1.1 KiB
JSON

{
"manifest_version": 2,
"name": "remwharead",
"version": "0.2.0",
"description": "Integrates remwharead into your Browser.",
"homepage_url": "https://schlomp.space/tastytea/remwharead",
"icons":
{
"16": "icon_dark.svg"
},
"applications":
{
"gecko":
{
"id": "remwharead@tastytea.de",
"strict_min_version": "57.0"
}
},
"permissions":
[
"activeTab",
"nativeMessaging"
],
"browser_action":
{
"default_title": "remwharead",
"default_popup": "add_uri.html",
"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
}]
},
"commands":
{
"open_popup":
{
"suggested_key":
{
"default": "Ctrl+Shift+S"
},
"description": "Add URI to remwharead."
}
}
}