mortalis
mortalis

Reputation: 2151

Disable the "Not available for your platform" on the addons.mozilla.org

Does anybody know how to disable this message and also to disable gray "Download" buttons?

I wanted to download some addons for Android platform from my desktop PC. When I load an addon page in Firefox it doesn't allow me to "Save Link As..." and the button is gray.
I can only do it if I rightclick the button fast, before the site checks the platform and disables the link.

Upvotes: 0

Views: 3764

Answers (1)

erosman
erosman

Reputation: 7721

Random example:
https://addons.mozilla.org/en-US/firefox/addon/slimsearch/

I am using Firefox and above is for Android and the button is grey and it says: Not available for your platform

Here are a few options:

  1. Right-click on the button, "Save Link As...", then save it to your computer

  2. Right-click on the button, "Copy Link Location" and then paste it in any download manger (or another browser) to download.

  3. If you have FlashGot installed and have a download manger, ALT + clicking the button will send the link to your download manager.

Update based on the added info:
Example: https://addons.mozilla.org/en-US/android/addon/close-all-tabs-mobile/

Run the following script in Scratchpad

document.querySelector('div.install-wrapper a').classList.remove('concealed');

An easier method is to create a bookmark to run the script (I often do that and use Bookmarks toolbar for it)

javascript:void(document.querySelector('div.install-wrapper a').classList.remove('concealed'))

Upvotes: 3

Related Questions