How do I enable Java Script?
bold texthow do I enable Java Script in my firefox browser?
bold texthow do I enable Java Script in my firefox browser?
I despise ai in every use and way with a passion. Now, it gets spammed everywhere on this browser, with no apparent way to disable and/or remove that filth. I don't want … (Lesen Sie mehr)
I despise ai in every use and way with a passion. Now, it gets spammed everywhere on this browser, with no apparent way to disable and/or remove that filth. I don't want to see it, ever! Why is it even on by default??? I don't want "chatbots", "Ai assistants" or any of that shit at all.
Recently, I've found that the OSX keyboard shortcut for focusing the next window in the current application ("Move Focus To Next Window" in System Settings) has changed i… (Lesen Sie mehr)
Recently, I've found that the OSX keyboard shortcut for focusing the next window in the current application ("Move Focus To Next Window" in System Settings) has changed its behavior. Pressing [cmd + `] will only cycle Firefox's windows until it reaches what seems to be the "end" of the current list of windows open. After this, I have to press [SHIFT+ cmd + `] to go backwards through the list of windows to re-focus any of the other windows.
Before, the behavior was such that I could just repeatedly press [cmd + `] and Firefox would infinitely cycle through all open windows, no shift key needed.
I haven't been able to reproduce this changed behavior in any other applications. Testing this in others (Finder, Safari, etc.) yields the cycling behavior instead of making me reverse the direction with shift to get back to the previous windows.
This is tied to the operating system's command. If I remap the keystroke to something else in system settings, I still need to use the shift key with it in Firefox once I reach the last open window.
Is there a way to get the old cycling behavior back? I find the key command with the shift key to be much less ergonomic.
With Firefox 144, there is unasked for/unwanted AI introduced. How do I ensure that all AI is completely disabled in my browser? I found a link describing some settings, … (Lesen Sie mehr)
With Firefox 144, there is unasked for/unwanted AI introduced. How do I ensure that all AI is completely disabled in my browser? I found a link describing some settings, but want to confirm this will disable ALL AI in the browser. I don't want it, don't trust the privacy/security holes yet to be found and would prefer it was not included in Firefox to begin with. The list I've found is:
Will this do it? What about:
browser.ml.chat.nimbus
Do I need to clear that field to ensure I don't get some auto opt-in in the future as more and more of this "stuff" is put into the browser?
Why not leave Firefox as a security/privacy conscious browser and put out a separate AI browser (FirefoxML?) for those that are not as concerned. How does Mozilla ensure that no information is leaked through AI from sessions for professionals that must protect physician/patient, attorney/client information or other legally confidential information?
How do I enable java script?
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 … (Lesen Sie mehr)
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.
Not coming about:config
Is there any way I can prevent Mozilla from installing/enabling more AI features on my Firefox browser in the future? I do not want AI running on my machine. I do not wa… (Lesen Sie mehr)
Is there any way I can prevent Mozilla from installing/enabling more AI features on my Firefox browser in the future?
I do not want AI running on my machine. I do not want AI integration in my browser. I understand I will still run into AI in the wilds of the internet, but I especially do not want these features enabled ON MY OWN MACHINE in an update without me specifically opting into them. Installing and enabling this without user opt-in communicates clear disrespect to the users.
I did a cursory search here for similar questions and Mozilla staff appear to be stating there will be no AI in Firefox unless the user specifically enables it, and it is as simple as disabling them via settings if "accidentally" enabled. This was not my experience, and it is alarming to see false information provided to users .
I have found other sources indicating the following must be set to false in about:config in order to disable browser-side AI/AI integration: browser.ml.chat.enabled browser.ml.chat.page.footerBadge browser.ml.chat.page.menuBadge browser.ml.chat.shortcuts browser.ml.chat.shortcuts.custom browser.ml.chat.sidebar browser.ml.checkForMemory browser.ml.enable browser.ml.linkPreview.shift
Is that all of them, will these disable ALL of the AI in Firefox?
Are there any other settings I need to set to false to ensure no AI is either running on my machine or the browser is not integrating AI functionality from third parties?
Is there any way to ensure Mozilla doesn't force AI features to be enabled without my say-so (again)?
Are there any privacy-minded browsers comparable to Firefox that DO respect their users with regards to forcing AI on them? It may be time to jump ship.
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 pinne… (Lesen Sie mehr)
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 :)
Under the finish setup heading, when opened the choice to pin Firefox to the task bar has been chosen numerous times. Each choice has been activated but this one doesn't … (Lesen Sie mehr)
Under the finish setup heading, when opened the choice to pin Firefox to the task bar has been chosen numerous times. Each choice has been activated but this one doesn't stick. When I open that heading again it displays that choice still open.
In the year 2024, firefox still does not allow a simple way to set any URL you would like as the new tab url (without an extension). Users were previously able to use ex… (Lesen Sie mehr)
In the year 2024, firefox still does not allow a simple way to set any URL you would like as the new tab url (without an extension).
Users were previously able to use extensions like NewTab override to have a relatively seamless experience changing their new tab page. However after certain changes, these said extensions can no longer set your new tab page to a local file, and can also no longer clear and focus the address bar.
I am simply requesting a feature within firefox to set a custom new tab page, without having to create any external configs, or without using any extensions. This basic feature has been available in chromium browsers for years, and firefox already includes a feature just like this for the "Homepage and new windows" setting, where it allows you to input a custom URL to a local file or site to put it as your homepage. However, this same setting for some odd reason does not exist for the "new tabs" option. Why is this?
As of now, I've had to use a manual override along the lines of this:
``` // shenanigans for setting a different new tab page const { classes: Cc, interfaces: Ci, utils: Cu } = Components; const { AboutNewTab } = Cu.import("resource:///modules/AboutNewTab.jsm", {}); // path to new tab can be a url or file const newTabURL = "file:///home/faaris/.local/packages/startpage/fazzi/index.html"; // set the new tab URL AboutNewTab.newTabURL = newTabURL; ```
this should not be needed. Having to modify files in system protected folders should not be needed for such a simple option.
How do I permanently change the "overflows" attribute of the new sidebar button to false so it doesn't disappear on me when I resize the window and I still need my tabs? … (Lesen Sie mehr)
How do I permanently change the "overflows" attribute of the new sidebar button to false so it doesn't disappear on me when I resize the window and I still need my tabs?
Can I change colors of individual tabs? without an extension? Maybe add an option to right click and select a color wheel or color selector to assign a color to that pa… (Lesen Sie mehr)
Can I change colors of individual tabs? without an extension?
Maybe add an option to right click and select a color wheel or color selector to assign a color to that particular tab. Especially if its bookmarked or pinned.
tell the steps to change it
Using Firefox 145.0.2, Flatpak installed via Bazzite's Bazaar store, there is no "sparkle" button in the sidebar, no options present like there are when I use Firefox on … (Lesen Sie mehr)
Using Firefox 145.0.2, Flatpak installed via Bazzite's Bazaar store, there is no "sparkle" button in the sidebar, no options present like there are when I use Firefox on Windows.
I have private browsing disabled on Firefox but there is a way to still use it via Ctrl +H , right click an item and there is dropdown of "open in private window" and it … (Lesen Sie mehr)
I have private browsing disabled on Firefox but there is a way to still use it via Ctrl +H , right click an item and there is dropdown of "open in private window" and it works. However I have no other way to open private windows since I blocked it. Also when I Ctrl+T in the private browser, it says this is disabled.
Therefore this option in Ctrl+H right click menu should not be there and I don't recall seeing it before. Maybe a bug with a recent Firefox update.
Does anyone know what has happened or how to remove this option?
Thank you!
how to restore previous homepage?
Thanks to the help received here and in the Reddit group I've been able to transfer almost all of my old colour and layout tweaks to a new intallation of Firefox (v133) o… (Lesen Sie mehr)
Thanks to the help received here and in the Reddit group I've been able to transfer almost all of my old colour and layout tweaks to a new intallation of Firefox (v133) on a new PC (running Windows 10). There's one thing that I haven't succeeded with though: I'd like to change the colour of the text in a tab when that tab becomes the active one.
This is the coding I'm using to change the tab's background colour when it's selected:
background: white !important; }
This works perfectly. But when I tried adding the line
color: black !important;
It had no effect. I'd be grateful for any thoughts. Many thanks.
Mozilla please make a browser that has the proton/photon like firefox 89 please i need it Btw you also ruined the firefox layout floating tab what we really need is a sec… (Lesen Sie mehr)
Mozilla please make a browser that has the proton/photon like firefox 89 please i need it Btw you also ruined the firefox layout floating tab what we really need is a secure browser with no bloat and open-sorsorce
The HOME icon used to appear on Firefox on my old computer, now it does not appear on the URL line. How do I get it to appear?