Showing questions tagged: Show all questions

Open PDFs inline while asking each time

Hello there, I like Firefox to ask me what to do each time with PDF documents, so I've set the action for PDF to "Always Ask". However, I've noticed that when I load a p… (read more)

Hello there,

I like Firefox to ask me what to do each time with PDF documents, so I've set the action for PDF to "Always Ask". However, I've noticed that when I load a page with a PDF document embedded inline, and I select "Open with Firefox" on the dialog box, the document always opens in a new tab.

In other words: there are certain PDF documents that get displayed inline when the action for PDF is "Open in Firefox"; but those same documents get opened in new tabs when set to "Always Ask".

Is possible for Firefox to display PDFs inline while asking me what to do each time?

Thanks in advance!

Asked by Vedanth Padmaraman 1 month ago

mozilla addons

Hello we are a team of developers building the top notch plugins for ecommerce browsers etc http://www.pasarelasdepagos.com/ right now we are looking to build an app fo… (read more)

Hello we are a team of developers building the top notch plugins for ecommerce browsers etc http://www.pasarelasdepagos.com/

right now we are looking to build an app for mozilla , so people can compare prices of products when they are in amazon, with others sources

does anybody has a guide where start building this app please???

we are very interested in start the project thanks

Asked by Jose Yabiku Vargas 1 month ago

How do I make the character under the caret visible?

On linux terminal the text should change color but how do I do that on firefox? By the way I have these settings for the caret ui.caretBlinkTime 0 ui.caretWidth 7 Not b… (read more)

On linux terminal the text should change color but how do I do that on firefox? By the way I have these settings for the caret ui.caretBlinkTime 0 ui.caretWidth 7 Not being able to see the character under the caret is problematic, would be nice if anyone knows what to do.

Asked by Hooper 1 month ago

How Hide tool bar & bookmarks bar in pop-up windows, Firefox 124 mac OS

I Use Mac OS Firefox as my primary client for Gmail, and I always compose emails in a pop-out window. Ever since Firefox 124, these pop-out windows include the tool bar a… (read more)

I Use Mac OS Firefox as my primary client for Gmail, and I always compose emails in a pop-out window. Ever since Firefox 124, these pop-out windows include the tool bar and bookmarks bar, eating up a bunch of space. I do want those bars displayed on my main firefox window, I don't want them displayed on the pop-up Gmail compose windows. Is there anyway to get Firefox revert back to this old behavior?

Asked by rhinoscope 1 month ago

Hide the youtube vertical scroll bar in full screen mode (+ add-ons questions on mozilla.org)

Hello, I'm using a PC with windows 11 and my Firefox is up-to-date 124.0.1 (64 bits). 1- It's been several years since a "full screen <=> rest of page" transition… (read more)

Hello,

I'm using a PC with windows 11 and my Firefox is up-to-date 124.0.1 (64 bits).

1- It's been several years since a "full screen <=> rest of page" transition was implemented on youtube (using the scroll wheel for example). Is there a way to completely hide YouTube's vertical scrollbar in full screen mode?

I've checked with Opera and Edge browsers and their behaviors are normal in my mind, as the bar is simply hidden in full-screen mode, no matter where I move the cursor. https://ibb.co/nkJzb8S

On Firefox, it is hidden but only if you don't move the mouse or hold the cursor over the scroll bar. https://ibb.co/VW3JTzp Is this an expected behavior in Firefox?

Otherwise, I've tried a couple of "hide scrollbar" style add-ons, but nothing worked, at least for this particular vertical bar, in full screen mode. I also tried the Troubleshoot mode, and to delete the internet cache with no more success. Here's how it looks in pictures (moving ones :) ) to make it clearer https://www.youtube.com/watch?v=UrJa60LHEws

2- Another question please, why are add-ons disabled on mozilla.org pages, and is there a way to enable some of them on there ?

Thanks for your attention and any help you can provide. Damien F.

Asked by damien-france 1 month ago

support pages BROKEN

I have the Dark Reader extension, because white screens HURT MY EYES. This is an accessibility issue! ALL of your support pages do not recognize or respond to the dark r… (read more)

I have the Dark Reader extension, because white screens HURT MY EYES. This is an accessibility issue! ALL of your support pages do not recognize or respond to the dark reader extension, and leave the page backgrounds WHITE! I can barely stand to write this! UGH! Thank you for fixing this!

Asked by sentientliquid 1 month ago

Can't navigate search suggestions with arrow keys on some sites

Previously I've been able to select search suggestions using the keyboard when typing into a search bar. As of a few days ago this no longer works on some sites like YouT… (read more)

Previously I've been able to select search suggestions using the keyboard when typing into a search bar. As of a few days ago this no longer works on some sites like YouTube, but does work on others like Google. The issue is not to do with num lock or scroll lock, and my browser is up to date (124.0.1 Ubuntu Snap version).

Asked by goofmuffin 1 month ago

autohide everything when not hovered anywhere on browser 2

this was asked before by myself /questions/1284841 and again by another user /questions/1402855 the code was navigator-toolbox { max-height: 0; overflow: hid… (read more)

this was asked before by myself

/questions/1284841

and again by another user

/questions/1402855

the code was

  1. navigator-toolbox {
 max-height: 0;
 overflow: hidden;
 transition: ease all 3s;

}

  1. main-window:hover #navigator-toolbox {
 max-height: 100vh;
 animation: 0s pop-in;
 animation-fill-mode: both;
 animation-delay: 2s;

}

@keyframes pop-in {

 from {overflow: hidden}
 to {overflow: unset}

}

the issue now i have with firefox 124.0.2 is that the transition is now instant when my mouse enters or leaves the window and one of my addon buttons (roboform) no longer works with this userchrome.css edit.

its been a few updates ago it broke maybe 15 or so and now im wondering if there is a better updated script that works like it used to.

Asked by roger douglas 3 weeks ago

userchrome.js: how to get notified when tabs open and close?

I've recently started using the Tree Style Tab extension, and I'm finding it useful, but I'd like it if the list of tabs could be automatically hidden when only one tab i… (read more)

I've recently started using the Tree Style Tab extension, and I'm finding it useful, but I'd like it if the list of tabs could be automatically hidden when only one tab is open (and automatically shown when more than one tab is open).

I hoped to write an extension to do this, but opening the sidebar from an extension requires a user gesture, so I suspect I'll have to use a userchrome.js script.

From a "userchrome.js"-like environment (i.e. unsandboxed AutoConfig), I can hide and show the sidebar with `SidebarUI.hide()` and `SidebarUI.show("treestyletab_piro_sakura_ne_jp-sidebar-action")`, and I can examine the tabs open in the current window via `gBrowser.tabs`, but I can't see how to get notified when the number of tabs changes (replacing `gBrowser.tabs` with a proxy doesn't work, for example). I suppose I could just check every few seconds? That feels like a bit of a cop-out, though, and gets more and more inefficient the more windows are open.

There's an API for extensions to receive events when tabs open and close, so clearly this is possible. Where should I be looking for this functionality?

(I also don't know how I would go about unregistering an event listener (or cancelling a setInterval call!) when the window closes, assuming that's necessary to avoid leaking resources – is there an event like `chrome-document-global-created` I could listen for, but that fires during teardown of the window rather than when one is created?)

Asked by ash 1 week ago

Bookmarks Toolbar Popup Menu Padding, Color, and more.

Hi All, I'm trying to change the appearance of the "Bookmarks Toolbar / Chevron >>" popup menu, which (after version 88) has turned bright white with extra padding… (read more)

Hi All,

I'm trying to change the appearance of the "Bookmarks Toolbar / Chevron >>" popup menu, which (after version 88) has turned bright white with extra padding between menu items and rounded corners.

I'm a fan of system menus, so I would really like the popup menu to look like the regular bookmarks menu from the top menu bar (see attached image).

I also like the subtle chiseled vertical line separating the favicons and the descriptions, and the 1px gray border around the menu, plus square corners.

I took a guess at some of the variable names, but only the menu's background color has changed.

Maybe someone knows how to change other attributes such as border color, radius, menu-item-height, padding, and add in the 3D vertical column line?

Thank you!

Here is my first attempt at the code...

#PersonalToolbar menupopup {
  /* Text color */
  --menu-color: #000 !important;
  --arrowpanel-color: #000 !important;
  --panel-color: #000 !important;
  /* Background color */
  --menu-background-color:  #f0f0f0 !important;
  --arrowpanel-background: #f0f0f0 !important;
  --panel-background: #f0f0f0 !important;
  /* Border color (if any) */
  --menu-border-color: #606060 !important;  /* not working on boomarks toolbar menu */
  --menu-border: 1px !important;  /* not working on boomarks toolbar menu */
  --menu-border-radius: 0px !important;  /* not working on boomarks toolbar menu */
}
/*** Tighten up drop-down/context/popup menu spacing (8 Sep 2021) ***/
menupopup:not(.in-menulist) > menuitem, 
menupopup:not(.in-menulist) > menu {
  padding-block: 0px !important; /* reduce to 3px, 2px, 1px or 0px as needed */ 
  min-height: unset !important; /* v92.0 - for padding below 4px */
}

Asked by Slouch 1 week ago

Homemade Home Page and Virtual Filing Cabinet

I made a private homepage years ago made up entirely of links to web-based AND local folders and files that are grouped into columns of categories like banking, medical, … (read more)

I made a private homepage years ago made up entirely of links to web-based AND local folders and files that are grouped into columns of categories like banking, medical, insurance, budget, etc. I keep it off-line on my desktop. I wrote the code so I could place an external link to a bank for example, next to a local link to the folder on my computer where I download statement pdfs from that bank and other bank files. The web page links displays: MY BANK Chkng/Debit Statements Credit Card Statements Bank Information The top link goes to the bank web page on line while the three lower links open folders on my computer where I save pdfs, txt, images, etc from the bank. Firefox opens the folders as "Index of file:///C:(folder path).

My personal home page is laid out with groupings like this for all sorts of information and associated web links: broker, vendor invoices, medical test, taxes, social security, health insurance, subscriptions etc. Today we get .pdf files with all sorts of information and no help organizing it for easy access. The Firefox browser has become the perfect tool for me. But I learned HTML coding years ago! Not so easy to do for others.

Today, many entities have on-line access that provides downloads like invoices, test results, payments, subscriptions, and much more that replace paper. Creating folders to hold these documents with their own local links on your web/local homepage makes sense to me.

While you can use "File" on Firefox to open a local folder or individual file, you cannot save it as a link. However, you can copy the path and transfer that to an a href=" line of link code in your homepage and build on that method. It's amazing how many types of files can be displayed in a browser that are locally stored. Even a link to a spreadsheet file will open that spreadsheets application. Having a varied list of links with quick access is worth the code-writing time. I wish there was an app to help anyone make their own custom folders and links to the contents in a "my homepage.html" . Is there a product idea in there for you folks?

Asked by NYCPaull 6 days ago