Join us and the lead editor of IRL, Mozilla's multi-award-winning podcast, for a behind-the-scenes look at the pod and to contribute your ideas for the next season, themed: "AI and ME." Mark your calendar and join our Community Call on Wednesday, Aug 7, 17:00–17:45 UTC. See you there!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

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.