Отображение вопросов с тегом: Показать все вопросы
  • Решено
  • Архивировано

how can I remove adblocker

I installed one of the ad blockers, I can't remember which one. It's given me so much trouble that I thought to disable or delete it. I deleted the little icon ( a stop… (читать ещё)

I installed one of the ad blockers, I can't remember which one. It's given me so much trouble that I thought to disable or delete it. I deleted the little icon ( a stop sign) that shows up on the far right of one of the menu bars (don't know the name of that bar but here it's the second one down). But websites still complain that I have an ad blocker. I've gone to 'add-ons and themes' but I can't find it. BTW, what's the difference between an add-on, a plug-in and an extension? Which one of those are ad blockers? How can I see and then delete whichever blocker I still have? Without the icon I can't even disable it for individual sites.

Задан rayandrews 1 год назад

Дан ответ rayandrews 1 год назад

  • Закрыто
  • Архивировано

Page refresh problems not covered elsewhere Firefox ESR 115.9.1

Goodd day from UK I run firefox esr 115.9.1 and find the the F5 refresh key does NOT refresh the images. The same applies when using the "reload" icon in the menu. Read… (читать ещё)

Goodd day from UK I run firefox esr 115.9.1 and find the the F5 refresh key does NOT refresh the images. The same applies when using the "reload" icon in the menu.

Reading other posts, nothing seems to apply here.

There are NO add-ons at all and everything is cleared on close. The text DOES seem to change.

As a web developer checking updates this is extremely annoying as only hope is keep closing the browser (to clear everything) and restart - the loads new images etc.

I use several versions of Firefox (2, 20, 56) to ensure compatability with olf browsers and it seems to be only those over 100 with this issue.

Does anyone know if this is a "feature" or a"bug" and is there any simple (!) way around the issue?

Thanks

p.s. ALWAYS happens, not intermittently

Задан SuMo Bot 1 год назад

Последний ответ от jscher2000 - Support Volunteer 1 год назад

  • Решено
  • Архивировано

LastPass is now disabled with every Firefox restart

For the past few months every restart of Firefox disables LastPass. I did NOT have this problem previously. The version of LastPass is current (no updates found). I can g… (читать ещё)

For the past few months every restart of Firefox disables LastPass. I did NOT have this problem previously. The version of LastPass is current (no updates found). I can go to Add-ons and the toggle is set to "on" but the icon in the menu bar is black. If I click the toggle off, then back on, LastPass comes on just fine. Why is Firefox disabling something that Add-ons says is loaded? VERY strange. Does NOT happen in Chrome. Thanks for any assistance. PITB!!!

Задан RobertL39 1 год назад

Дан ответ zeroknight 1 год назад

  • Решено
  • Архивировано

Double icons on Stop & Reload buttons when using custom icons

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my St… (читать ещё)

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my Stop icon.

Please see attached image and animation.

Any idea if this is a minor bug?

Below is my code to split the Reload button into Reload & Stop buttons, then to add text to the navigation buttons, and finally to add icons to the navigation buttons.

This anomaly happens whether or not I split the Reload & Stop buttons. With just a single Reload button, I'm also seeing the default Reload icon appear over my own.

Thank you.

/* ---------- SPLIT RELOAD BUTTON INTO RELOAD & STOP ------------- */
#reload-button, #stop-button {
   display: inherit !important; 
} 
#reload-button > .toolbarbutton-icon {
  -moz-appearance: none !important; 
}


/* ------------ ADD TEXT LABELS TO NAVIGATION TOOLBAR BUTTONS --------------- */
/* Shows both icon and label for toolbarbuttons */
toolbar .toolbarbutton-1[label]{
  flex-direction: column;
  align-items: center !important;
}
toolbar .toolbarbutton-1[label]:not([disabled]):hover{ background-color: var(--toolbarbutton-hover-background) !important; }
toolbar .toolbarbutton-1[label] > .toolbarbutton-icon,
toolbar .toolbarbutton-1[label] > .toolbarbutton-badge-stack{
  padding: var(--toolbarbutton-inner-padding) !important;
  padding-bottom: 0px !important;
  height: calc(var(--toolbarbutton-inner-padding) + 16px) !important;
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text {
  display: flex !important;
  min-height: 16px !important;
  padding-top: 3px !important;
  padding-bottom: 6px !important;
  background-color: transparent !important;
  overflow: hidden;
  width: 9ch; /* changes space between buttons */
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text::before{
  margin-inline: auto;
 }
:root:not([uidensity="compact"]) toolbar .toolbarbutton-1[label] > .toolbarbutton-text{ padding: 2px !important; }


/* ------------ ADD CUSTOM ICONS TO NAVIGATION TOOLBAR BUTTONS ----------- */
#back-button {
   list-style-image: url("image/back.png") !important;
   padding-top: 8px !important;
}
#back-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#forward-button {
   list-style-image: url("image/forward.png") !important;
   padding-top: 8px !important;
}
#forward-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#reload-button {
   list-style-image: url("image/reload.png") !important;
   padding-top: 8px !important;
}
#reload-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#stop-button {
   list-style-image: url("image/stop.png") !important;
   padding-top: 8px !important;
}
#stop-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#print-button {
   list-style-image: url("image/print.png") !important;
   padding-top: 8px !important;
}
#print-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#home-button {
   list-style-image: url("image/home.png") !important;
   padding-top: 8px !important;
}
#home-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}

Задан Slouch 1 год назад

Дан ответ Slouch 1 год назад

  • Решено
  • Архивировано

Firefox browser

Hi when saving bookmarks with the key Control+ Shift + D this saves all bookmarks but doesn't save pinned bookmarks, what keys save all bookmarks including the pins? Tha… (читать ещё)

Hi when saving bookmarks with the key Control+ Shift + D this saves all bookmarks but doesn't save pinned bookmarks, what keys save all bookmarks including the pins? Thanks

Задан Mangekyo Sharringan 1 год назад

Дан ответ TechHorse 1 год назад

  • Решено
  • Архивировано

sessionstore file

Hi Was told to ask new question off of this tread. https://support.mozilla.org/en-US/questions/1314940#question-reply I have similar issue. Have file that has all the ta… (читать ещё)

Hi Was told to ask new question off of this tread. https://support.mozilla.org/en-US/questions/1314940#question-reply

I have similar issue. Have file that has all the tab history, but can't get Firefox to recognize or use it. The scrounger pulls up everything so the file is good it seems.

Why can't, or how do we get Firefox to use it?

Thank you

Задан cleejoy 1 год назад

Дан ответ cleejoy 1 год назад

  • Решено
  • Архивировано

spell check feature

I realize Facebook doesn't have a spell check feature,but is there a way my browser, Firefox, which I already have spell check enabled can somehow spell check Facebook wh… (читать ещё)

I realize Facebook doesn't have a spell check feature,but is there a way my browser, Firefox, which I already have spell check enabled can somehow spell check Facebook when I chat? Can someone help? Thank you.

Задан sciencemagic 1 год назад

Дан ответ bodybreak 1 год назад

  • Решено
  • Архивировано

All of my addons are disabled and won't re-enable!

All of my addons are disabled and won't re-enable! They all say "addon name" could not be verified for use in Nightly and has been disabled. See attachment clipboard00.… (читать ещё)

All of my addons are disabled and won't re-enable!

They all say "addon name" could not be verified for use in Nightly and has been disabled. See attachment clipboard00.jpg

If I try to install an addon from the recommended extensions settings (for example "return youtube dislike ") I get a message bubble stating "The Addon downloaded from this site could not be installed because it appears to be corrupt. {OK!}" See attachment clipboard01.jpg

The message above about addons appearing to be corrupt happens if I go to any of my current addon pages and try to redownload them.

Задан Greg Stanford 10 месяцев назад

Дан ответ Greg Stanford 10 месяцев назад

  • Решено

extensions eating memory but not showing anywhere

When i go to "about:memory" and do a measurement to see whats eating memory i find extensions that are nowhere to be found in the extension manager nor in the folders whe… (читать ещё)

When i go to "about:memory" and do a measurement to see whats eating memory i find extensions that are nowhere to be found in the extension manager nor in the folders where the extension files are. they are: - Extension(id=wikipedia@search.mozilla.org, name="Wikipedia (en)", baseURL=moz-extension://8551 - Extension(id=webcompat@mozilla.org, name="Web Compatibility Interventions", baseURL=moz-extensi - Extension(id=screenshots@mozilla.org, name="Firefox Screenshots", baseURL=moz-extension://486 - Extension(id=pictureinpicture@mozilla.org, name="Picture-In-Picture", baseURL=moz-extension:// - Extension(id=google@search.mozilla.org, name="Google", baseURL=moz-extension://13f3307a-648b- - Extension(id=formautofill@mozilla.org, name="Form Autofill", baseURL=moz-extension://dfdf20df- - Extension(id=ddg@search.mozilla.org, name="DuckDuckGo", baseURL=moz-extension://c8eb7a13-e1ab - Extension(id=bing@search.mozilla.org, name="Bing", baseURL=moz-extension://424719d2-8ccf-4c8e- - Extension(id=addons-search-detection@mozilla.com, name="Add-ons Search Detection", baseURL=moz- (the names are cut thats how it shows and at the end there is a "..." i cant select) I tried looking everywhere and i cant find where are this extensions to delete them. i use the google website to do searches so dont need an extension, i dont use duckduckgo at all, i dont use bing at all, i dont use the screenshot feature, i dont use the picture in picture thing and also i use the wbesite if i want to go to wikipedia. I would like to know how to erase them entirely since i dont use them and they are eating memory.

Задан karras85 3 недели назад

Дан ответ jscher2000 - Support Volunteer 2 недели назад

  • Решено

pull down bookmarks glitched after rebuilt system

Rebuilt my computer, restored Bookmarks from 'bookmarks-2025-08-30.html' but the original 'Other bookmarks' (just below 'Bookmarks toolbar') is now empty and has been mov… (читать ещё)

Rebuilt my computer, restored Bookmarks from 'bookmarks-2025-08-30.html' but the original 'Other bookmarks' (just below 'Bookmarks toolbar') is now empty and has been moved to the bottom of all my other bookmarks in a new 'Other Bookmarks' folder. How do I get the contents back in the 'Other bookmarks' (just below 'Bookmarks toolbar'). P.S. I have a backed up 'bookmarks-2025-08-30.json' as well as a ' bookmarks-2025-08-30.html' available, if that would help. Regards and Best, NP_145

Задан np_145 4 месяца назад

Дан ответ jscher2000 - Support Volunteer 4 месяца назад

  • Решено

Unable to see "View all memories" on One Drive

Hi Up to a few days ago I was able to see "View all memories" from One Drive in Firefox. Not anymore. I am subscribed to One Drive. Every few days I get an email from O… (читать ещё)

Hi

Up to a few days ago I was able to see "View all memories" from One Drive in Firefox. Not anymore.

I am subscribed to One Drive. Every few days I get an email from One Drive with the past memories from the day of the email. I will open the emails and click on "View all memories" then it would take me to the One Drive and I would be able to see those pictures individually. For a few days now I have not been able to do this on Firefox anymore. The website goes to gray like it is trying to download the pictures but it gets stuck there.

This is happening both on my desktop with Windows 7 and my laptop with Window 11. Everything works in the Microsoft Edge browser. I can see all the images individually from that day.

I have communicated this problem to Microsoft One Drive and it seems to be a browser problem. Is there any way that this problem can be solved in the Firefox browser?

I would appreciate your help, Amy

Задан Amylogamy 4 месяца назад

Дан ответ Denys 2 месяца назад

  • Решено

How do I diagnose a reproducible tab crash?

Just over a week ago, I found that a particular page transition always crashed by browser tab (i.e. a reproducible crash). This occurred on the Quora.com website when vis… (читать ещё)

Just over a week ago, I found that a particular page transition always crashed by browser tab (i.e. a reproducible crash). This occurred on the Quora.com website when visiting the 'Questions' tab for any Quora Space. I am not aware of anything special associated with this operation, and it works OK in Chrome. There may be other cases -- outside of that particular website -- but that is the one most affecting me at the moment.

There are no associated Windows events logged. I checked about:crashes and the Crash Report folder but i cannot find any readable details.

If I refresh the page then the transition occurs without problem.

I would like to find the cause myself because I am on an Windows 7 64-bit ESR version, although I do not believe this is an ESR issue as it was working fine a couple of weeks ago. it is just that I cannot find any logged information on the cause.

Задан ACProctor 3 месяца назад

Дан ответ ACProctor 3 месяца назад

  • Закрыто

Need help with Chase bank online

Dear Ty: I appreciate your efforts to help me, unfortunately, it did not work. FireFox is still at 115.30.0. Any other thoughts? I thought there might be some software… (читать ещё)

Dear Ty: I appreciate your efforts to help me, unfortunately, it did not work. FireFox is still at 115.30.0. Any other thoughts?

I thought there might be some software I could download to spoof the Chase system into thinking Firefox was a later version,

Thanks and regards,

LS

Задан Lorraine Schlagheck 1 месяц назад

Последний ответ от Denys 1 месяц назад