Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Etsi tuesta

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Firefox addon pages redesign

  • 8 vastausta
  • 1 henkilöllä on sama ongelma
  • 5 näyttöä
  • Viimeisin kirjoittaja cor-el

more options

Why is the version number no longer at the top of the page alongside the addon name? I've been using ESR, and now I want to transition to Quantum, so I'm trying to investigate and collect addons for Quantum. It would make things easier if the version number and late update date was there as well.

Why is the version number no longer at the top of the page alongside the addon name? I've been using ESR, and now I want to transition to Quantum, so I'm trying to investigate and collect addons for Quantum. It would make things easier if the version number and late update date was there as well.

Kaikki vastaukset (8)

more options

Hi noel_envoide, I don't know the answer to "why" but if you want a straightforward list of installed extensions, you can copy/paste from the Troubleshooting Information page. Either:

  • "3-bar" menu button > "?" button > Troubleshooting Information
  • (menu bar) Help > Troubleshooting Information
  • type or paste about:support in the address bar and press Enter/Return

Scroll down past "Application Basics" and "Firefox Features" to "Extensions" which should be followed by a table listing name, version, enabled/disabled status, and GUID.

more options

Hi jscher2000,

That's a good tip that I will make use of on a regular basis for sure

However, I'm wasn't referring to installed extensions. I'm talking about going to an individual extension page. Before Quantum,, the version number accompanied the extension title at the top of the page. Now you have to scroll to the bottom to see the version.

I don't understand the purpose of that. It would take no more space to return to the way it was.

Muokattu , muokkaaja noel_envode

more options

HI, we do not have a answer for you for that nor can Firefox Volunteer Support make changes to a add-on/Extension page.

If you would like to comment on that you can go here : https://discourse.mozilla.org/c/add-ons https://discourse.mozilla.org

more options

You can temporarily revert the site layout using the link at the bottom of the page: "View classic desktop site". That sets a cookie, so if you do not retain cookies, you may need to use it multiple times.

more options

Here is a simple bookmarklet to add the version number.

You can create a new bookmark and paste the JavaScript code in its Location field.


javascript:(function(){var d=document,txj=d.querySelector("#redux-store-state").textContent,txp=JSON.parse(txj),id=txp.addons.byID,nam=d.querySelector('.Addon-title');for(n in id){v=id[n];vv=v.current_version;cpf=vv.compatibility.firefox;}nam.textContent=v.name+' '+vv.version+' (min: '+cpf.min+'; max: '+cpf.max+')';})()

Muokattu , muokkaaja cor-el

more options

jscher2000 said

You can temporarily revert the site layout using the link at the bottom of the page: "View classic desktop site". That sets a cookie, so if you do not retain cookies, you may need to use it multiple times.

There it is. Great. Thanks cor-el said

Here is a simple bookmarklet to add the version number. You can create a new bookmark and paste the JavaScript code in its Location field.
javascript:(function(){var d=document,txj=d.querySelector("#redux-store-state").textContent,txp=JSON.parse(txj),id=txp.addons.byID,nam=d.querySelector('.Addon-title');for(n in id){v=id[n];vv=v.current_version;}nam.textContent=v.name+' '+vv.version;})()

I get an error with that

more options

noel_envoide said

cor-el said
Here is a simple bookmarklet to add the version number. You can create a new bookmark and paste the JavaScript code in its Location field.
javascript:(function(){var d=document,txj=d.querySelector("#redux-store-state").textContent,txp=JSON.parse(txj),id=txp.addons.byID,nam=d.querySelector('.Addon-title');for(n in id){v=id[n];vv=v.current_version;}nam.textContent=v.name+' '+vv.version;})()

I get an error with that

I don't know why that error message says "Create Shortcut". To create a bookmarklet in Firefox, you need to add it to a convenient spot on the Bookmarks Menu or Bookmarks Toolbar.

But you may not want to bother because the Add-ons site uses CSP (Content Security Policy) headers that block bookmarklets. I'm not sure it's worth turning off CSP enforcement (it's a global setting, not site-by-site) just for this.

more options

You need to create a bookmark in Firefox. You can right-click on the Bookmarks Toolbar to create the bookmark on this toolbar. Give the new bookmark a name like 'Adons' and paste the JavaScript code in the Location field of the bookmark. You can open a Addons page and click the bookmark icon to run the JavaScript code. This will modify the title line of the extension to show version numbr and compatibility data.