- Solved
Disable r-click context menus for one site (onshape) only ?
As per subject - is there a way?
As per subject - is there a way?
Over the past few updates, I’ve noticed an issue with Firefox where it no longer restores my previous session when reopening the browser. I normally keep four tabs pinned… (read more)
Over the past few updates, I’ve noticed an issue with Firefox where it no longer restores my previous session when reopening the browser.
I normally keep four tabs pinned and about five additional tabs open for browsing and work. In the past, I could simply click the X to close Firefox, and when I reopened it, all my tabs that are pinned and unpinned would automatically come back. Recently, this stopped happening. Now, if I close Firefox, it opens with a fresh window instead of restoring my previous tabs.
I’ve already checked the setting under General/Startup, and Open previous windows and tabs is enabled. Because of this issue, I avoid closing Firefox entirely, since rebuilding all my tabs each time has become a hassle.
Is there a way to fix this? Any suggestions would be appreciated.
Thanks :)
This might be quite "old man yells at cloud" of me, but oh my god I am so fed up of everything putting AI in as a "feature" for no reason. 1) No one asked for this. 2) It… (read more)
This might be quite "old man yells at cloud" of me, but oh my god I am so fed up of everything putting AI in as a "feature" for no reason.
1) No one asked for this. 2) It is bad at doing whatever it is designed to do. (It's not helpful, it's not even neutrally unhelpful, it's ANTI-HELPFUL.) 3) It is always on by default, or worse, impossible to turn off.
At the very least AI features need to be off by default, because it's rubbish.
Firefox is meant to be a bastion of sanity and safety in a world of exploitative techbros trying to steal our data and trick us into making money for them. So-called "AI" goes against this. Please, Firefox, be better.
As of 20th Nov 2025, here's how to turn off AI features. Go into about:config and set all of these to false (yes, you’ll have to copy and paste them one by one):
in addition to nuking AI, it’ll also speed up your browsing
These are technically two separate issues, but both pertain to functionality of the mouse and keyboard. Whenever I right click to bring up the menu, the options (despite … (read more)
These are technically two separate issues, but both pertain to functionality of the mouse and keyboard. Whenever I right click to bring up the menu, the options (despite being functional) do not appear in the menu proper. Instead there are just empty buttons. In addition, certain hotkeys aren't working at all. Ctrl+C and Ctrl+V to copy paste are doing fine, but Ctrl-T and Ctrl-W to open and close tabs respectively do nothing. Neither of these issues were happening yesterday.
The keyboard shortcut to take screenshots [Ctrl + Shift + S] used to work a few weeks ago but it has stopped working for quite a while now. Doesn't work on any site, I ca… (read more)
The keyboard shortcut to take screenshots [Ctrl + Shift + S] used to work a few weeks ago but it has stopped working for quite a while now. Doesn't work on any site, I can only create screenshots by right clicking and pressing the button manually.
started a new profile, imported bookmarks, the about:config settings won't die. I've deleted the user and prefs.js data etc. but all the dumb changes I made before switch… (read more)
started a new profile, imported bookmarks, the about:config settings won't die. I've deleted the user and prefs.js data etc. but all the dumb changes I made before switching users just make their way back no matter how many new profiles I create. I have standard Firefox, with Nightly and Private versions installed. Win 11 25H2 whatever its called now.. please help.
See photo, No refresh button
Hi all, I’ve been experimenting with Firefox’s new AI chat integration and adding custom prompts via `about:config` using `browser.ml.chat.prompts.#`. Right now, prompt v… (read more)
Hi all,
I’ve been experimenting with Firefox’s new AI chat integration and adding custom prompts via `about:config` using `browser.ml.chat.prompts.#`.
Right now, prompt values are static JSON strings, like:
```json {"label":"Answer","id":"answer","value":"Answer selected question"} ```
This works great for fixed text, but there’s no way to dynamically include useful context like the **current page URL**.
For example, I’d like to create a prompt like:
```json {"label":"Summarize w/ URL","id":"summarize_with_url","value":"Summarize this selection. Page URL: {{url}}"} ```
…but currently, `{{url}}` (or similar placeholders) isn’t supported, and the AI chat doesn’t automatically pull the page URL as context.
This means I either have to manually copy/paste the URL or use a separate bookmarklet workaround, which breaks the smooth workflow.
Has anyone found a hidden about:config trick for this, or can this be added to Firefox’s roadmap?
Thanks!
The font size in the address bar is too tiny. I have tried to find a way to make the font readable without success. Can anyone help?
Hi I see that Firefox has the option to ask an AI chatbot, with your options for AI being Claude, GPT, Gemini, and Le Chat Mistral. What I'm not seeing is an option for L… (read more)
Hi I see that Firefox has the option to ask an AI chatbot, with your options for AI being Claude, GPT, Gemini, and Le Chat Mistral. What I'm not seeing is an option for Lumo, Protons new chatbot. My question is is there any future support coming for Lumo, or better yet, an option to let FF users choose ANY chatbot, not just these 4?
Firefox options has disappeared from the /// menu! How do I get back to it?
I am uncomfortable with the push for unnecessary ai content and features on firefox and if they are added without easy ways to remove or disable I will be switching to a … (read more)
I am uncomfortable with the push for unnecessary ai content and features on firefox and if they are added without easy ways to remove or disable I will be switching to a different browser
I often use the key combination Ctrl+Alt+X in Google Docs when on different devices but it doesn't function properly when instead it brings up the AI sidebar gadget. Remo… (read more)
I often use the key combination Ctrl+Alt+X in Google Docs when on different devices but it doesn't function properly when instead it brings up the AI sidebar gadget. Removing the sidebar button doesn't really help and it's annoying. So how exactly do I turn off the key combination for the sidebar?
Hello, I wanted to customize my Firefox new tab with a local HTML file, such as "/path/to/my/index.html". It was possible to use this workaround: https://github.com/Jangs… (read more)
Hello,
I wanted to customize my Firefox new tab with a local HTML file, such as "/path/to/my/index.html". It was possible to use this workaround: https://github.com/Jangsoodlor/Firefox-New-Tab-Config/tree/main https://github.com/Jangsoodlor/Firefox-New-Tab-Config/tree/main
Which implied a configuration file (sometimes named "autoconfig.cfg", "firefox.cfg", "local-settings.cfg" depending on the guide since the name is arbitrary) with javascript code. In the new Firefox 136, this code fails to execute due to a new API being used.
If you want to customize your new tab, follow the previous guide, but on the configuration file write this code instead:
// My new tab
try {
const ff = {};
ChromeUtils.defineESModuleGetters(ff, {AboutNewTab: "resource:///modules/AboutNewTab.sys.mjs"});
ff.AboutNewTab.newTabURL = 'file:///path/to/my/index.html';
} catch (e) {ChromeUtils.reportError(e);}
Note that the file must start with a comment
Adapting the "/path/to/my/index.html" to your needs.
Thanks to @mkaply (github) on this thread https://github.com/mozilla/policy-templates/discussions/1190 for the new API method.
I post this here in case someone has the same issue, because is quite recent and hard to find on the internet.
I am unable to locate the setting Enable Link preview. I am using Firefox 142.0 on Windows 10 Home 22H2. This setting does not appear under Settings>General>Brows… (read more)
I am unable to locate the setting Enable Link preview. I am using Firefox 142.0 on Windows 10 Home 22H2. This setting does not appear under Settings>General>Browsing. Are there other settings that are required to enable this facility?
hi, spellchecking works fine when using Firefox in Linux, but not in Windows 11. For instance, I can enter comments and replies to magazine articles while using Linux and… (read more)
hi, spellchecking works fine when using Firefox in Linux, but not in Windows 11. For instance, I can enter comments and replies to magazine articles while using Linux and they're spellchecked as I go by highlighting misspelled words etc, but if I'm in Windows 11 and on the same comments section, although my Firefox settings are the same the spellcheck doesn't happen. Can anyone please tell me what's up with that?
Hi All I am trying to set up a background image to my FFX home page. In other browsers that is simple; I see no simple way in FFX. Is this a failing? Can it be overcome,… (read more)
Hi All
I am trying to set up a background image to my FFX home page. In other browsers that is simple; I see no simple way in FFX. Is this a failing? Can it be overcome, simply?
How can I connect my canon printer to my account
New installation of Debian 13, Firefox setup with sync on successful. However, I wanted to add hone button and a few other mods to the toolbar but when I started customiz… (read more)
New installation of Debian 13, Firefox setup with sync on successful. However, I wanted to add hone button and a few other mods to the toolbar but when I started customize the toolbar from menu pic the customization page would not work, it appeared and seemed OK but when I dragged and dropped anything it would not work. I could pickup items but they would not place in toolbar and just snapped back to the pallet. I tried several different ways to enter the customization area but it was always non-functional.
I opened Firefox today to find that nothing would show up, at first I tried clicking on the icon on the taskbar, but it just made the icon bounce with the window briefly … (read more)
I opened Firefox today to find that nothing would show up, at first I tried clicking on the icon on the taskbar, but it just made the icon bounce with the window briefly popping into view. That's when I realized that Firefox was completely offscreen and unusable.
For context, last night, I had 3 windows open, two were regular sessions, the last one was a private session I had open on a temporary second monitor that I unplugged afterward. My dad lended it to me, so I'd rather not ask him again unless I absolutely have to. I closed them in order making sure to close the default window last thinking that Firefox would open there next time I launch it, but comes tomorrow and when I launch Firefox it opens off-screen and I can't interact with the window at all.
There also seems to be no way to bring it back directly to my screen on this garbage OS everyone calls "windows 11" according to their help forum: https://learn.microsoft.com/en-us/answers/questions/4139775/app-runs-off-screen-in-windows-11?page=2#answers
So, I'm commenting here via brave browser, first to report a bug because I don't think Firefox should remember the last position of a private window of all things, but also because I don't know where else to go to ask that question since windows 11 itself cannot seem to have an option to solve this problem either. I know the position is stored in the profile folder, so what should I edit in there to get Firefox back where it should be? No, I will not delete/reset it it has a ton of search engines and settings that Firefox won't sync.