Reputation: 2151
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
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:
Right-click on the button, "Save Link As...", then save it to your computer
Right-click on the button, "Copy Link Location" and then paste it in any download manger (or another browser) to download.
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