• தீர்வுற்றது
  • Archived

Deep Learning Models via WebGPU

Hello, We're currently working on a demo that enables Stable Diffusion, a deep learning model that generates high-quality images according to text prompts, on web browse… (மேலும் படிக்க)

Hello,

We're currently working on a demo that enables Stable Diffusion, a deep learning model that generates high-quality images according to text prompts, on web browsers with only client-side GPUs. In our use cases, WebGPU is a perfect fit. You can find our GitHub repository for this project here: https://github.com/mlc-ai/web-stable-diffusion.

However, at the moment, it's only possible to run the demo via Chrome Canary (Chrome's nightly build). We're very interested in getting it to work on Firefox as well, but we're encountering vague error messages in Firefox's nightly build with the `dom.webgpu.enabled` flag turned on.

I would love to ask two questions: 1) How mature is Firefox's WebGPU support on Metal? 2) Is there any pointers we could follow to develop WebGPU demos for Firefox?

Thanks a lot!

Asked by junrushao1994 1 வருடத்திற்கு முன்பு

Answered by TyDraniu 1 வருடத்திற்கு முன்பு

  • தீர்வுற்றது
  • Archived

e and then then C

Not sure if this is the best place to ask, but when I try to take a document from one place and try to insert it into another document, hitting Crtl-A, Ctrl-C or -X to c… (மேலும் படிக்க)

Not sure if this is the best place to ask, but when I try to take a document from one place and try to insert it into another document, hitting Crtl-A, Ctrl-C or -X to cut it from Doc 1 then hitting Ctrl-V and pasting it into Doc 2 wipes out the margin setting arrows so I can't change the margins to match Doc 2. And my attempts to get around that screw up the formatting of the document. Any suggestions? Thanks.

Asked by rpmhart 1 வருடத்திற்கு முன்பு

Answered by jscher2000 - Support Volunteer 1 வருடத்திற்கு முன்பு

  • தீர்வுற்றது
  • Archived

How to create a shortcut to launch the FIREFOX PROFILE MANAGER?

How to create a shortcut in order to launch the MOZILLA FIREFOX PROFILE MANAGER at Firefox startup?

Asked by J4 and J5 Sync Bookmarks and Add-ons 1 வருடத்திற்கு முன்பு

Answered by J4 and J5 Sync Bookmarks and Add-ons 1 வருடத்திற்கு முன்பு

  • தீர்வுற்றது
  • Archived

Can I restrict the password autofill to the exact url / form (sub)domain

I have different login forms on different sub domains so I always get a huge lists of different logins. and also I get my password for the basic auth from the web-server … (மேலும் படிக்க)

I have different login forms on different sub domains so I always get a huge lists of different logins. and also I get my password for the basic auth from the web-server on my login form.

I also consider this as a security risk when different sub domains belong to different parties and I accidentally put my password into the wrong form.

Can I config Firefox the way that I get only passwords in the list that match the exact url or at least the (sub)domain?

Another Question As a Web-developer can I do something that my client don't experience such a mess (like giving the login form a special id so passwords are restricted do this particular form.

Asked by mt14 1 வருடத்திற்கு முன்பு

Answered by jscher2000 - Support Volunteer 1 வருடத்திற்கு முன்பு

  • தீர்வுற்றது
  • Archived

Firefox Developer Edition - do not see any developer tools (webconsole, inspect element etc)

Am I missing anything? something needs to get enabled? some command line options? Thanks in advance.

Asked by sf038a 12 மாதங்களுக்கு முன்பு

Answered by cor-el 12 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Tabs on Bottom broke again

Hi Well Firefox did it again. I had tabs on the bottom where I wanted them and they broke this again in the update I just got. Any idea how to move them back down to th… (மேலும் படிக்க)

Hi

Well Firefox did it again. I had tabs on the bottom where I wanted them and they broke this again in the update I just got.

Any idea how to move them back down to the bottom? This is the userchrome.css coding I was using that worked fine before the update

@import url(userChrome-color_bookmark_folders_Proton89.css);


/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/tabs_on_bottom.css made available under Mozilla Public License v. 2.0 See the above repository for updates as well as full license text. */

/* Modify to change window drag space width */ /* Use tabs_on_bottom_menubar_on_top_patch.css if you have menubar permanently enabled and want it on top

  • /

/* IMPORTANT */ /* Get window_control_placeholder_support.css Window controls will be all wrong without it. Additionally on Linux, you may need to get: linux_gtk_window_control_patch.css

  • /
root{ --uc-titlebar-padding: 0px; }

@media (-moz-os-version: windows-win10){

root[sizemode="maximized"][tabsintitlebar]{ --uc-titlebar-padding: 8px }

}

  1. toolbar-menubar[autohide="true"] > .titlebar-buttonbox-container,
  2. TabsToolbar > .titlebar-buttonbox-container{

position: fixed; display: block; top: var(--uc-titlebar-padding,0px); right:0; height: 35px; } /* Mac specific. You should set that font-smoothing pref to true if you are on any platform where window controls are on left */ @supports -moz-bool-pref("layout.css.osx-font-smoothing.enabled"){

root{ --uc-titlebar-padding: 0px !important }

.titlebar-buttonbox-container{ left:0; right: unset !important; } }

root[uidensity="compact"] #TabsToolbar > .titlebar-buttonbox-container{ height: 30px }
  1. toolbar-menubar[inactive] > .titlebar-buttonbox-container{ opacity: 0 }
  1. navigator-toolbox{ padding-top: var(--uc-titlebar-padding,0px) !important; }

.titlebar-buttonbox-container > .titlebar-buttonbox{ height: 100%; }

  1. titlebar{

-moz-box-ordinal-group: 2; -moz-appearance: none !important; --tabs-navbar-shadow-size: 0px; }

.titlebar-placeholder,

  1. TabsToolbar .titlebar-spacer{ display: none; }

/* Also hide the toolbox bottom border which isn't at bottom with this setup */

  1. navigator-toolbox::after{ display: none !important; }

@media (-moz-gtk-csd-close-button){ .titlebar-button{ -moz-box-orient: vertical } }

/* These exist only for compatibility with autohide-tabstoolbar.css */ toolbox#navigator-toolbox > toolbar#nav-bar.browser-toolbar{ animation: none; }

  1. navigator-toolbox:hover #TabsToolbar{ animation: slidein ease-out 48ms 1 }

/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/tabs_on_bottom_menubar_on_top_patch.css made available under Mozilla Public License v. 2.0 See the above repository for updates as well as full license text. */

/* Menubar on top patch - use with tabs_on_bottom.css */ /* Only really useful if menubar is ALWAYS visible */

root{ --uc-window-control-width: 0px !important }
  1. navigator-toolbox{ padding-top: calc(29px + var(--uc-titlebar-padding,0px)) !important }
  1. toolbar-menubar{

position: fixed; display: flex; top: var(--uc-titlebar-padding,0px); height: 25px; width: 100%; overflow: hidden; }

  1. toolbar-menubar > .titlebar-buttonbox-container{ height: 29px; order: 100; }
  1. toolbar-menubar > [flex]{ flex-grow: 100; }
  2. toolbar-menubar > spacer[flex]{

order: 99; flex-grow: 1; min-width: var(--uc-window-drag-space-width,20px); }

  1. toolbar-menubar .titlebar-button{ padding: 2px 17px !important; }
  1. toolbar-menubar .toolbarbutton-1 { --toolbarbutton-inner-padding: 3px }

/* TABS: height */*|*:root { --tab-toolbar-navbar-overlap: 0px !important; --tab-min-height: 20px !important; --tab-min-width: 80px !important;

  1. tabbrowser-tabs {

width: 100vw !important; }

  1. main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {padding-bottom: var(--tab-min-height) !important;}

.tab-background { border-radius: 8px 8px 0px 0px !important; border-image: none !important; } .tab-line { display: none; }

.tab-close-button { color: red!important; }

Asked by scottish2 11 மாதங்களுக்கு முன்பு

Answered by jscher2000 - Support Volunteer 11 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Scroll using the arrow keys.

Hey there, I have been using the arrow keys to scroll pages more and more often and was wondering if there is a way to increase / decrease the speed when holding down th… (மேலும் படிக்க)

Hey there,

I have been using the arrow keys to scroll pages more and more often and was wondering if there is a way to increase / decrease the speed when holding down the arrow keys to scroll the page?

Thanks in advance. :)

Asked by rubinlord 11 மாதங்களுக்கு முன்பு

Answered by cor-el 11 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Does Firefox have apps like chrome and edge?

Chrome and edge have "apps" that let me make websites into separate windows and treat much like apps. I can do this for my calendar, notes, and timer websites, for instan… (மேலும் படிக்க)

Chrome and edge have "apps" that let me make websites into separate windows and treat much like apps. I can do this for my calendar, notes, and timer websites, for instance. I have yet to find a feature like this for Firefox. Does it exist? Is there a roadmap where this is being worked on?

Thank you

Asked by greenleebt 10 மாதங்களுக்கு முன்பு

Answered by cor-el 10 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Dual Signed In google accounts possibe?

Hail all: Now, I have 2 Google accounts: My private one, and a Corporate Account, used for work. I always signed out of my normal window from the active account to the C… (மேலும் படிக்க)

Hail all:

Now, I have 2 Google accounts: My private one, and a Corporate Account, used for work. I always signed out of my normal window from the active account to the Corporate Account and vice versa, depending on which I needed to check. A common occurrence for many people.

But I noticed long ago, that in Private Window ... I seem to be signed out, opening Google in it. I use Private Window to avoid unnecessary clutter from sites dropping their stuff on my Temp folder. I hate clutter ... severe Asperger's.

I was thinking ... if I keep my private Google Mail on the prime non-Private window, can I sign in while this is open (and stays open) into my Corporate account in my Private Window?

If so, this would save me quite a bit of hassle, having to log out several times a day from my main, private account/mail and into the Corporate account mail, and when done vice versa to me private account mail.

Thank you.

Asked by dtm_samurai@hotmail.com 10 மாதங்களுக்கு முன்பு

Answered by dtm_samurai@hotmail.com 10 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Looking For Text Insert Macro Addon?

Is there any way (or any addon) that I can insert commonly used text into a text box? I have tried AutoFill and, while it works fine for... well.. filling out forms... I … (மேலும் படிக்க)

Is there any way (or any addon) that I can insert commonly used text into a text box? I have tried AutoFill and, while it works fine for... well.. filling out forms... I cannot get it to work for what I need. Basically, I want to insert things like '¯\_(ツ)_/¯' rather than having to go to a page, select that, copy it, go back and paste it... or, worse yet ... remember and type that over and over again.

Asked by rebeltaz1 10 மாதங்களுக்கு முன்பு

Answered by cor-el 10 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Support for transparent images when copy-and-pasting

hello! i'm looking for a way to adjust the settings, if there are any, to copy and paste PNG images with firefox and keep their transparency intact -- rather than the sol… (மேலும் படிக்க)

hello! i'm looking for a way to adjust the settings, if there are any, to copy and paste PNG images with firefox and keep their transparency intact -- rather than the solid black it has now. as i understand it there's been similar issues as of 8 months ago, but i'm unsure if anything else has changed in that time.

i'm not a full-on graphic designer or anything but i do use this fairly often as an artist to look at references and such, and as someone who's recently switched to firefox from chrome (which does support this feature) i'd like to know if it's as easy as clicking something in a menu or if that's not an option altogether. thank you in advance to anyone willing to help!

Asked by rag 9 மாதங்களுக்கு முன்பு

Answered by Medhasree Suram 8 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

advanced search using boolean operators

Back in the day, I used to used 'boolean'(?) operators to refine web searches. E.g. if I want to search for "blue whale" and didn't want any ebay returns, I'd type: blu… (மேலும் படிக்க)

Back in the day, I used to used 'boolean'(?) operators to refine web searches. E.g. if I want to search for "blue whale" and didn't want any ebay returns, I'd type: blue whale -ebay That doesn't seem to work now, is there another method I could use?

Asked by toobmany 8 மாதங்களுக்கு முன்பு

Answered by cor-el 8 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

How to get a list of all the open tabs in a Firefox window?

Hello everyone, I've been using Firefox for quite some time and I always keep a bunch of windows open throughout a few workspaces on my laptop. However, this takes up a … (மேலும் படிக்க)

Hello everyone,

I've been using Firefox for quite some time and I always keep a bunch of windows open throughout a few workspaces on my laptop. However, this takes up a lot of resources and looks very messy. So, I've been thinking of writing a script/extension to simply store all the open links in a window to a named list that I can, then, come back to when I need and reopen. That way, I could possibly have different lists, separated by topic and stored in a single place.

I'm sorry if there is an obvious solution for this, I saw a couple of similar questions have been asked before, but none that I could use as reference.

Thank you for your time, have a nice week!

Asked by pedrobarrostorreaogaiao 8 மாதங்களுக்கு முன்பு

Answered by cor-el 8 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Is there a way to change only the background image for new tabs in Firefox 117+?

Hi, I have been searching a way to change the Firefox new tab background image keeping its vanilla design. I found I could use a userContent.css file in this post from a … (மேலும் படிக்க)

Hi, I have been searching a way to change the Firefox new tab background image keeping its vanilla design. I found I could use a userContent.css file in this post from a few years ago: [https://support.mozilla.org/en-US/que.../1271362] I have followed the instructions step by step but it doesn't currently work.

Asked by Tifile 7 மாதங்களுக்கு முன்பு

Answered by zeroknight 7 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

New computer with W11, Ctrl + Shift + S shortcut will not work in Firefox

Hello! I recently got a new computer with Windows 11 freshly installed. I downloaded Firefox, went to take a screenshot, and the usual shortcut of Ctrl + Shift + S does … (மேலும் படிக்க)

Hello!

I recently got a new computer with Windows 11 freshly installed. I downloaded Firefox, went to take a screenshot, and the usual shortcut of Ctrl + Shift + S does not work. I can right click and Take a Screenshot, and I can use other Ctrl + Shift shortcuts, like Ctrl + Shift + T to reopen closed tabs. The only one that doesn't work is screenshots. I can also put Screenshots in my top row Toolbar and use it, just not the keyboard shortcut.

I refreshed Firefox, uninstalled and reinstalled Firefox, as well as checked the about:config extensions.screenshots.disabled preference. It has been set to false, so I have set it to true and false again hoping it would "reset" it but nothing. Thank you!

Asked by smith87345 7 மாதங்களுக்கு முன்பு

Answered by zeroknight 7 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Keyboard navigation on search results

I want to navigate on search results using the keyboard. I could use tab but it suggests all interactive elements such as news, images, books, videos, search settings and… (மேலும் படிக்க)

I want to navigate on search results using the keyboard. I could use tab but it suggests all interactive elements such as news, images, books, videos, search settings and etc one by one. I want to press something and make active first result, then second. If such hotkeys are not provided, maybe there are any extensions with similar functionality?

Asked by LuchnikKek 7 மாதங்களுக்கு முன்பு

Answered by LuchnikKek 7 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Unable to select buttons

Often, I am unable to submit with Foxfire. Usually, I disable a mess of blocking/privacy settings, and sometimes this works. Not today. The annoying ReCapta pictures/b… (மேலும் படிக்க)

Often, I am unable to submit with Foxfire. Usually, I disable a mess of blocking/privacy settings, and sometimes this works. Not today. The annoying ReCapta pictures/bridges/bicycles/sidewalks never showed. Never. Selecting the submission button failed to cause any kind of a reaction. Finally, had to use Chrome. What gives? Can this be fixed?

Oh, yeah, I'm a retired wildlife biologist, not a programmer, so please dumb it down.

Asked by Frosty 6 மாதங்களுக்கு முன்பு

Answered by cor-el 6 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Firefox started to ask me open mp4 links in other apps, instead of opening it in Firefox itself.

Before updating Firefox to 115.3.1esr, mp4 link used to open in the browser. Is there any fix?

Asked by Uiharu 6 மாதங்களுக்கு முன்பு

Answered by Uiharu 6 மாதங்களுக்கு முன்பு