Този сайт ще има ограничена функционалност, докато се извършва тече неговата поддръжка. Ако дадена статия не може реши проблема ви и искате да зададете въпрос, нашата общност е готова да ви помогне на @firefox в Twitter и /r/firefox в Reddit.

Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Научете повече

Firefoxes own pop ups

  • 10 отговора
  • 1 има този проблем
  • 1 изглед
  • Последен отговор от phil.nicol

more options

how do I stop a Firefox popup requesting to install a Firefox extension?

how do I stop a Firefox popup requesting to install a Firefox extension?

Избрано решение

It is about this content.

<div class="offers" id="offers">    <div class="extension-browser extension-browser__firefox"> 

You can add code to the userContent.css file.


@-moz-document domain(www.rt.com){
/* hide offers */
 #offers { display:none!important; }
/* hide firefox extension */
 .extension-browser__firefox { display:none!important; }
}

In Firefox 69 and later you need to set this pref to true on the about:config page to enable userChrome.css and userContent.css in the chrome folder.

  • toolkit.legacyUserProfileCustomizations.stylesheets = true

See:

Прочетете този отговор в контекста 👍 1

Всички отговори (10)

more options

Can you show a screenshot of this popup?

more options

Thank you for your quick response.

This is not a serious technical issue but only a matter of my convenience; but I don't like this offer to install the extension coming up so regularly, so it's more of an visual nuisance.

I hope you don't find this question a bother and waste of your time; in the grand scheme of things this is a small issue so I appreciate your effort.

Thanks

more options

It doesn't look like our popup.

Променено на от TyDraniu

more options

Doesn't look like. Or isn't?? It's got your name on it, who would be doing that?

more options

I also us RT and that's from them wanting you to install their extension. I use Adblock Plus to block that element. Check to see if whatever ad-blocker you're running has something that can block the elements. see screenshot

more options

I've just been trying uBlock Origin and blocking any pop ups also blocks opening another tab off of that site so it's obstructive. I was looking for a work around.

more options

To Ty

sorry, don't worry about it.

more options

Избрано решение

It is about this content.

<div class="offers" id="offers">    <div class="extension-browser extension-browser__firefox"> 

You can add code to the userContent.css file.


@-moz-document domain(www.rt.com){
/* hide offers */
 #offers { display:none!important; }
/* hide firefox extension */
 .extension-browser__firefox { display:none!important; }
}

In Firefox 69 and later you need to set this pref to true on the about:config page to enable userChrome.css and userContent.css in the chrome folder.

  • toolkit.legacyUserProfileCustomizations.stylesheets = true

See:

more options

cor-el

Thank you. I'll try that. It's new territory for me but it looks appropriate. Live and learn.

more options

Thanks again, this solution is working well.