顯示下列標籤的問題: 顯示所有問題

Store data in permanent storage - ALWAYS set BLOCK

Hello, I wanted to ask if there’s a way to configure the setting for "Store data in permanent storage" (or "Daten im dauerhaften Speicher speichern" in German) to always… (閱讀更多)

Hello,

I wanted to ask if there’s a way to configure the setting for "Store data in permanent storage" (or "Daten im dauerhaften Speicher speichern" in German) to always block/disable ALWAYS via Group Policy or Registry Editor.

As we are a small company, I would like to apply this setting for all Active Directory users.

Thank you

Best regards,

Andreas

Andreas Ruben 於 3 個月前 詢問

Captune 最近回覆於 3 個月前

Feature Request: Dynamic URL Placeholder in `browser.ml.chat.prompts` for Firefox AI Integration

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… (閱讀更多)

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.

    • Feature request:**
  • Add support for variables like `{{url}}`, `{{title}}`, or `{{selection}}` in `browser.ml.chat.prompts`.
  • This would make prompts far more powerful and let AI chat automatically reference page context.

Has anyone found a hidden about:config trick for this, or can this be added to Firefox’s roadmap?

Thanks!

Med 於 5 個月前 詢問

Paul 最近回覆於 5 個月前

  • 封存

How to set new backgroung image to home page

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… (閱讀更多)

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?

Lojong 於 12 個月前 詢問

James 最近回覆於 12 個月前

  • 封存

How do I verify that the browser I am using is accessing the web via my VPN?

I just purchased a year subscription for the Mozilla VPN. I want to be able to verify that the FireFox browser I'm using is accessing the web via the VPN. How do I veri… (閱讀更多)

I just purchased a year subscription for the Mozilla VPN. I want to be able to verify that the FireFox browser I'm using is accessing the web via the VPN. How do I verify that? I don't see any icon indicated that it's a VPN connection.

wills4 於 1 年前 詢問

Tin Zaw Cho 最近回覆於 11 個月前

Access AI chatbots in Firefox - Make this actually useful???

I'm a user of the new "Ask AI" feature in Firefox, and while I appreciate the convenience of having an AI assistant in the browser, I've noticed a significant limitation … (閱讀更多)

I'm a user of the new "Ask AI" feature in Firefox, and while I appreciate the convenience of having an AI assistant in the browser, I've noticed a significant limitation that prevents the feature from being truly useful.

The Problem

Currently, when you right-click and select the "Ask AI" option, the prompt sent to the chatbot only includes the selected text and the page title. It completely omits the page's URL. This is the prompt that is sent:

* * I’m on page “<tabTitle>Get Support | Mozilla Support</tabTitle>” with “<selection></selection>” selected.


  • * Please summarize the selection using precise and concise language. Use headers and bulleted lists in the summary, to make it scannable. Maintain the meaning and factual accuracy.


This is a major issue because without the URL, the AI cannot access the full context of the page. It can't scrape the content, analyze the structure, or understand the full context of the selected text, which is often crucial for generating accurate and comprehensive summaries or answers. The feature, as it is, relies entirely on the user manually selecting a large block of text, which is clunky and often insufficient.

Proposed Improvements

   Include the URL in the Prompt: The most critical improvement would be to automatically include the page's URL in the prompt sent to the AI. This would allow the AI to properly "see" and interact with the full page, making tasks like "Summarize" much more effective.
   Allow Custom Prompt Editing: A second, highly beneficial feature would be the ability for users to customize the prompt before it's sent. This would give users more control over the AI's output and enable more creative and specific uses of the feature beyond the pre-set options. This would also allow users to manually insert the URL if needed, as a workaround for the current limitation.

These changes would transform the "Ask AI" feature from a novelty that only works on selected text to a genuinely powerful tool for research, content analysis, and productivity.

Thank you for considering this request.

knostikos 於 5 個月前 詢問

Paul 最近回覆於 5 個月前

How do I turn off the Firefox sidebar key combinations?

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… (閱讀更多)

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?

llama.qwerty 於 2 個月前 詢問

Agent virtuel 最近回覆於 2 個月前

  • 已解決
  • 封存

Customize New Tab with a local HTML file after Firefox 136

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/Jang… (閱讀更多)

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.

LluisE 於 11 個月前 詢問

jscher2000 - Support Volunteer 於 11 個月前 解答

  • 封存

WebRTC turning inactive

I have a Snowflake add-on, which requires WebRTC for connections. But WebRTC is not permanently active in my Firefox browser. See image. I activate WebRTC by toggling the… (閱讀更多)

I have a Snowflake add-on, which requires WebRTC for connections. But WebRTC is not permanently active in my Firefox browser. See image. I activate WebRTC by toggling the config variable media.peerconnection.enabled into 'true' and the add-on works. For some time, only! After a couple of days it is back to 'WebRTC not detected'. What is wrong?

erik18 於 6 個月前 詢問

Syco Path 最近回覆於 6 個月前

Firefox is about privacy, so why are *any* AI options enabled by default?

On a brand new profile for Firefox without configuration of any kind I get an AI chatbot in the sidebar and AI tabs suggestions. Why? Is Mozilla looking to destroy deca… (閱讀更多)

On a brand new profile for Firefox without configuration of any kind I get an AI chatbot in the sidebar and AI tabs suggestions.

Why?

Is Mozilla looking to destroy decades of good will?

Anything like this should be something you have to opt-in to see, not try and opt-out of.

If privacy is a true concern then any of that stuff should be an extension, and not something on by default.

I really don't understand why Mozilla is doing this.

mattl 於 2 個月前 詢問

Agent virtuel 最近回覆於 2 個月前

Mozilla's positino on AI

I have strong ethical objections to the current generation of LLMs, and really strongly dislike contributing to Google's massive monopoly on most internet spaces, hence m… (閱讀更多)

I have strong ethical objections to the current generation of LLMs, and really strongly dislike contributing to Google's massive monopoly on most internet spaces, hence my using Firefox instead of Chrome. I was disheartened by the addition of an AI label to Firefox, and really would love to be able to continue using a good browser that doesn't shove AI slop down my throat. If the integration of LLMs to Firefox is going to continue, I wanted to ensure there will at least be some way to remove it from my browser

muireannbhreathnach 於 2 個月前 詢問

Paul 最近回覆於 1 個月前

  • 已解決

Wrong StartupWMClass on Firefox Developer Edition

`StartupWMClass=firefox-aurora` in `/usr/share/applications/firefox-devedition.desktop`, with actually `firefox-dev` for opened windows. Version: Ubuntu 25.04, GNOME 4… (閱讀更多)

`StartupWMClass=firefox-aurora` in `/usr/share/applications/firefox-devedition.desktop`, with actually `firefox-dev` for opened windows.

Version: Ubuntu 25.04, GNOME 48, firefox-devedition 143.0b2.

Captune 於 5 個月前 詢問

Captune 於 5 個月前 解答

how to fully remove or disable AI features

i hate how in your face everything is with AI already, i don't need firefox being added to the list of stuff to try and tune out. if more intrusive AI features get added … (閱讀更多)

i hate how in your face everything is with AI already, i don't need firefox being added to the list of stuff to try and tune out. if more intrusive AI features get added i might migrate somewhere else.

Toby Toby! 於 2 個月前 詢問

Paul 最近回覆於 1 個月前

Is there a way to disable AI tag grouping before it rolls out to my device?

I don't know about you, but I loathe the recent push by the majority of tech companies to integrate the wasteful and environmentally harmful technology that is Generative… (閱讀更多)

I don't know about you, but I loathe the recent push by the majority of tech companies to integrate the wasteful and environmentally harmful technology that is Generative AI into every corner of the digital landscape. I am especially disappointed in Firefox following the Gen AI hype and inserting it into our experiences as a default without considering the massive amount of users who are not interested in this tech for morons, those who want nothing to do with said tech, or people like myself who f***ing hate it. I am aware that you can shut off AI features by using Firefox's advanced configuration, so I'm wondering if such an option already exists for this coming rollout feature.

I for one believe Firefox should give its users the option to preemptively opt out of rollout features for things involving Gen AI which many, like me, are in vocal opposition against.

Flora 於 6 個月前 詢問

Gut 最近回覆於 4 個月前

  • 已解決

Changeable Hotkeys.

My friend recommended this browser to me. When I tried to customize it, I couldn't find an option to change the hotkeys to my preference. I consider this feature importan… (閱讀更多)

My friend recommended this browser to me. When I tried to customize it, I couldn't find an option to change the hotkeys to my preference. I consider this feature important since I use it for work. Can I do this somehow, and is there any plan to add such a feature to the settings?

Foshien 於 1 個月前 詢問

Agent virtuel 於 1 個月前 解答

"Ask An AI Chatbot" right click context menu

Mozilla changed the longstanding "Copy Link Address" hotkey from "A" to "L" in Firefox 88. They have decided to not consider reverting this change, even though "L" is fa… (閱讀更多)

Mozilla changed the longstanding "Copy Link Address" hotkey from "A" to "L" in Firefox 88.

They have decided to not consider reverting this change, even though "L" is far less accessible than "A" and brings it out of sync with accessibility keys across other browsers.

Reference: https://bugzilla.mozilla.org/show_bug.cgi?id=1701324

Firefox broke copy link address right click context menu hotkey "A" again in Firefox 142 by adding "Ask an AI Chatbot" and this time I'm not sure I can get around it with an extension https://addons.mozilla.org/en-US/firefox/addon/link-copy/

Can this context menu option be made optional or something please?

febesbrasil 於 5 個月前 詢問

Paul 最近回覆於 5 個月前