libredirect/src/manifest.json

65 lines
1.8 KiB
JSON
Raw Normal View History

2019-09-20 12:45:58 +02:00
{
2022-03-03 17:54:48 +01:00
"name": "LibRedirect",
2022-03-04 19:49:09 +01:00
"description": "A web extension that redirects popular sites to alternative privacy-friendly frontends and backends",
"version": "1.5.8",
2019-09-20 12:45:58 +02:00
"manifest_version": 2,
"browser_specific_settings": {
"gecko": {
"id": "7esoorv3@alefvanoon.anonaddy.me",
"strict_min_version": "67.0"
}
},
2019-09-20 12:45:58 +02:00
"background": {
"page": "pages/background/background.html",
2019-10-07 13:59:31 +02:00
"persistent": true
2019-09-20 12:45:58 +02:00
},
"icons": {
2022-02-27 21:34:40 +01:00
"16": "assets/images/libredirect-16.png",
"32": "assets/images/libredirect-32.png",
"48": "assets/images/libredirect-48.png",
"128": "assets/images/libredirect-128.png"
2019-09-20 12:45:58 +02:00
},
"permissions": [
"webRequest",
"webRequestBlocking",
"storage",
"cookies",
"menus",
"<all_urls>"
],
2019-09-29 15:04:24 +02:00
"browser_action": {
2022-01-26 09:10:47 +01:00
"default_title": "LibRedirect",
2022-01-30 13:38:55 +01:00
"browser_style": false,
"default_popup": "pages/popup/popup.html",
2019-09-29 15:04:24 +02:00
"default_icon": {
2022-02-27 21:34:40 +01:00
"16": "assets/images/libredirect-16.png",
"32": "assets/images/libredirect-32.png",
"48": "assets/images/libredirect-48.png",
"128": "assets/images/libredirect-128.png"
2019-09-29 15:04:24 +02:00
}
},
"options_ui": {
2022-02-04 16:48:24 +01:00
"page": "pages/options/general/general.html",
2022-01-30 13:38:55 +01:00
"browser_style": false,
2022-01-29 23:34:33 +01:00
"open_in_tab": true
2019-10-07 13:59:31 +02:00
},
"chrome_settings_overrides": {
"search_provider": {
"name": "LibRedirect",
"keyword": "libredirect",
2022-03-12 16:01:26 +01:00
"favicon_url": "https://raw.githubusercontent.com/libredirect/libredirect/master/src/assets/images/libredirect-16.png",
"search_url": "https://libredirect.invalid/?q={searchTerms}",
"encoding": "UTF-8",
"is_default": false
}
},
"commands": {
"switchInstance": {
"suggested_key": {
"default": "Alt+Shift+L"
},
"description": "Switch Instance"
}
2022-03-19 10:00:57 +01:00
},
"update_url": "https://raw.githubusercontent.com/libredirect/libredirect/master/src/updates/updates.xml"
2022-02-26 09:29:51 +01:00
}