Skip to content

Commit 3bd5f2b

Browse files
committed
Add support for Firefox for Android in manifest.json.
https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/browser_specific_settings > To support Firefox for Android without specifying a version range, > the gecko_android subkey must be an empty object, i.e. > "gecko_android": {}. Otherwise, the extension is only made available > on desktop Firefox.
1 parent 2fb6c41 commit 3bd5f2b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

extension/changelog.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@
4848
"message": "Adjust revive request prices to be accurate. Prices are no longer the same for every revive provider.",
4949
"contributor": "DeKleineKobini"
5050
},
51-
{ "message": "Add links to the external services, where applicable.", "contributor": "DeKleineKobini" }
51+
{ "message": "Add links to the external services, where applicable.", "contributor": "DeKleineKobini" },
52+
{ "message": "Add support for Firefox for Android in manifest.json.", "contributor": "TheFoxMan" }
5253
],
5354
"removed": [
5455
{ "message": "Removed bazaar prices from the popup, as they are set to be removed from the API.", "contributor": "DeKleineKobini" },

extension/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
}
6666
],
6767
"options_ui": { "page": "pages/settings/settings.html", "open_in_tab": true },
68-
"browser_specific_settings": { "gecko": { "id": "{3754707b-1aa4-4c6f-96e7-5b1cdc1de5f9}" } },
68+
"browser_specific_settings": { "gecko": { "id": "{3754707b-1aa4-4c6f-96e7-5b1cdc1de5f9}" }, "gecko_android": {} },
6969
"content_scripts": [
7070
{
7171
"matches": ["https://www.torn.com/*.php*"],

0 commit comments

Comments
 (0)