Skip to content

Commit

Permalink
Add support for Firefox for Android in manifest.json.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Sashank999 committed Jan 3, 2025
1 parent 2fb6c41 commit 3bd5f2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion extension/changelog.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@
"message": "Adjust revive request prices to be accurate. Prices are no longer the same for every revive provider.",
"contributor": "DeKleineKobini"
},
{ "message": "Add links to the external services, where applicable.", "contributor": "DeKleineKobini" }
{ "message": "Add links to the external services, where applicable.", "contributor": "DeKleineKobini" },
{ "message": "Add support for Firefox for Android in manifest.json.", "contributor": "TheFoxMan" }
],
"removed": [
{ "message": "Removed bazaar prices from the popup, as they are set to be removed from the API.", "contributor": "DeKleineKobini" },
Expand Down
2 changes: 1 addition & 1 deletion extension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
}
],
"options_ui": { "page": "pages/settings/settings.html", "open_in_tab": true },
"browser_specific_settings": { "gecko": { "id": "{3754707b-1aa4-4c6f-96e7-5b1cdc1de5f9}" } },
"browser_specific_settings": { "gecko": { "id": "{3754707b-1aa4-4c6f-96e7-5b1cdc1de5f9}" }, "gecko_android": {} },
"content_scripts": [
{
"matches": ["https://www.torn.com/*.php*"],
Expand Down

0 comments on commit 3bd5f2b

Please sign in to comment.