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

Someone broke into my firefox, I want to see who

Someone broke into my firefox. A ex friends through into my face stuff she could only know if she or someone broke into my firefox history. I deleted firefox browser on … (閱讀更多)

Someone broke into my firefox. A ex friends through into my face stuff she could only know if she or someone broke into my firefox history.

I deleted firefox browser on both my android and pc's and am brokenhearted because I checked it and it brought back memories going back to 2011.

I want this person who did this for her. The broke into my google, laptop, pc. She's pretty and rediculuos manipulitieve.

I've tried tech guys, computer stores, web sites. They want me delete everything and start over. I don't want to loose decades of memories. I have a vpn and they keep breaking into my phone and pc's.

Is there a goverment contractor worker that does this stuff on the side? I want to find them. I bought Audibles and Kindles on dark web to see if anyone there can help, and will read for next 10 years if I have to in order to find them. Need suggestion.

timkelli 於 1 年前 詢問

James 最近回覆於 1 年前

  • 封存

Random Unusual Freezing, Yet Not Unresponsive

Hello, I've recently encountered a curious issue with my Firefox browser (Firefox version 102.0, Windows 11 Insider Preview 10.0.25145.1011). At seemingly random times i… (閱讀更多)

Hello,

I've recently encountered a curious issue with my Firefox browser (Firefox version 102.0, Windows 11 Insider Preview 10.0.25145.1011). At seemingly random times it will freeze for between two and five minutes (roughly). UI elements become completely unresponsive and the cursor does not update when moving over the browser window. The window will not minimize. Yet, Windows Task Manager does not report the application as being unresponsive. While never a common problem, any freezes in the past would eventually cause the Windows Task Manager to identify it as unresponsive.

I have disabled "recommended performance settings" and hardware acceleration to no avail. Everything seems perfectly normal immediately before and after the freezes, and I've yet to identify how I can trigger them. I do not recall having made any changes to my browser before the freezes started occurring, though multiple Windows updates have taken place since then. If I'm too impatient to wait I will end the Firefox processes via Windows Task Manager and restart it so I can return to my tabs without having cookies deleted. I have 13 plugins mainly covering privacy/security concerns. Is there some sort of debug tool I can engage to see what's occupying Firefox while it's frozen? I've just found the Firefox Task Manager, and will see if it can offer any additional information during/after the freezes.

Thanks, Logan

Logan 於 1 年前 詢問

Asa Dotzler 最近回覆於 1 年前

  • 封存

How can you disable selection mode in the new PDF editing capability?

A feature for editing PDF files has recently been added to the released code. I cannot find comprehensive documentation for it. If such exists, a pointer would be appre… (閱讀更多)

A feature for editing PDF files has recently been added to the released code. I cannot find comprehensive documentation for it. If such exists, a pointer would be appreciated.

Here is the specific problem with which I am struggling. I am marking up a converted web page (Waze) with the tool with the pencil icon. That starts out OK. However, after a while, it gets into a mode in which it thinks I am trying to select some of my previous markings. Once a box has been selected all I can do is move the content or delete it. I do not want to do that. I want to make new marks nearby. It seems to be impossible. The only way I have managed to get around the problem is to save the PDF to a file and then reload it. But that only lasts for a while until it gets back into the mode in which it thinks I am trying to select some of my new marks.

I don't know what is getting it into the selection mode or how to get out once there. There are no clues in the menu. I could use the mode at times for removing marks, so I do also want to know how to get into it.

Help would be much appreciated.

DrHow 於 1 年前 詢問

Adrian 最近回覆於 1 年前

How can I disable the bs security?

Firefox is pissing me off. I want to disable SSL security checks long enough to do what needs doing. I'm working from a container so there's really no risk, just need t… (閱讀更多)

Firefox is pissing me off. I want to disable SSL security checks long enough to do what needs doing. I'm working from a container so there's really no risk, just need the browser to do what I want not what 'It' wants.

peace

eilenbeb05 於 4 個月前 詢問

zeroknight 最近回覆於 4 個月前

  • 封存

How can I search the History for websites I visited b/t Feb. 8-16, 2022 (older than 6 months)? Thank you.

How can I search my History for websites I visited using Firefox b/t Feb. 8-16, 2022 (older than 6 months)? I'm trying desperately to retrace my steps on these days to r… (閱讀更多)

How can I search my History for websites I visited using Firefox b/t Feb. 8-16, 2022 (older than 6 months)? I'm trying desperately to retrace my steps on these days to resolve an issue at work.

Please let me know if anyone has any questions.

Thank you for any advice or assistance anyone can offer.

Al

dcarea101 於 1 年前 詢問

jscher2000 - Support Volunteer 最近回覆於 1 年前

  • 封存

Reply all loses track of the emails the original email was sent to

When I reply to emails, either reply, or reply all, I prefer to see all the email addresses from the email header that the original email was sent to. This is the defa… (閱讀更多)

When I reply to emails, either reply, or reply all, I prefer to see all the email addresses from the email header that the original email was sent to. This is the default on most email systems I've used. I think it was the default on Firefox until recently.

Now, when I do a reply, or reply all, the message now starts with the original email, without the email headers. I understand some people may prefer that, but I definitely don't like it. It can be useful to see who the original email had been sent to, especially if there are errors in that list of people, or the people included are fewer or more than the previous email.

Note, if I forward the email, the email does contain the email addresses from the original email header.

This behaviour caused me some real grief when I realised some people had made a mistake when sending me an email recently.

Is there a setting to adjust this?

Regards

   Mark Dunn

Mark Dunn 於 1 年前 詢問

Dropa 最近回覆於 1 年前

  • 封存

The bounding rectangle of an input control getting by UIAutomation is not up-to-date

I'm using UIAutomation to get the bounding rectagle of an input control. Here's my C++ code. IUIAutomation* p_iui; ... IUIAutomationElement* p_fcs_element; while(TRUE) … (閱讀更多)

I'm using UIAutomation to get the bounding rectagle of an input control. Here's my C++ code.

IUIAutomation* p_iui; ... IUIAutomationElement* p_fcs_element; while(TRUE) {

   Sleep(1000);
   p_iui->GetFocusedElement(&p_fcs_element);
   RECT r;
   p_fcs_element->get_CurrentBoundingRectangle(&r);
   _cprintf("Rect: %d,%d,%d,%d\n", r.left, r.top, r.right, r.bottom);

}

When I put focus on some input text area and move Firefox by drag&drop, the RECT r's data(left,top,right,bottom)does not change, unless I change the focus to another text area and back to the first one. Should I change some Firefox settings to make the location information up-to-date when get_CurrentBoundingRectangle every time?

aniki0210 於 1 年前 詢問

cor-el 最近回覆於 1 年前

  • 封存

told to clear cache avice ctrl + f5 did not work

RIGHT i was told to clear cache - and also to do it - like ctrl + f5 Nothing seemes to happen something i gting in the way of operating this awful self-willed machine … (閱讀更多)

RIGHT i was told to clear cache - and also to do it - like ctrl + f5 Nothing seemes to happen something i gting in the way of operating this awful self-willed machine

Patricia 於 1 年前 詢問

jscher2000 - Support Volunteer 最近回覆於 1 年前

  • 封存

How to keep firefox from overwriting a certain window?

I have a small window where I keep track of ball game score. Unfortunately, as I keep browsing, Firefox overwrites that window with new content. Is there a way to tell … (閱讀更多)

I have a small window where I keep track of ball game score. Unfortunately, as I keep browsing, Firefox overwrites that window with new content. Is there a way to tell Firefox to leave that window alone?

john765 於 1 年前 詢問

Terry 最近回覆於 1 年前

  • 封存

How do I turn off Download status dropdown window?

I like the button that shows the status of anything I elect to download (e.g. an image to put in an error report). However about a week ago I started getting a pulldown… (閱讀更多)

I like the button that shows the status of anything I elect to download (e.g. an image to put in an error report).

However about a week ago I started getting a pulldown style display in addition to the little status icon. Is there any way to shut that off? It's annoying.

Havan_Ironoak 於 2 年前 詢問

GNU/V 最近回覆於 1 年前

  • 封存

How to turn off Firefox usage hints

Just now, as I was in the middle of something, Firefox popped up a usage tip about tabs. I find this disruptive. Is there a way to turn these off? If I want to know how t… (閱讀更多)

Just now, as I was in the middle of something, Firefox popped up a usage tip about tabs. I find this disruptive. Is there a way to turn these off? If I want to know how to do something, I'll look in the help.

It's fine when you create a new feature to display a tab when I first launch after an upgrade, or to have the Help menu show a Latest Features item, but please don't interrupt my work with pop-ups.

For the moment, I don't see anything in Preferences about this. Is there an about:config setting I can add to suppress this feature?

CharlesBelov 於 1 年前 詢問

jscher2000 - Support Volunteer 最近回覆於 1 年前

  • 封存

openeing or saving "transferd open tabs" from mobile to pc

hi i have Firefox on mobile ( android Samsung a125f) and PC. i wanted to transfer all open tabs from mobile to PC.after sync . i can see open tabs below sing out in… (閱讀更多)

hi

i have Firefox on mobile ( android Samsung a125f) and PC.

i wanted to transfer all open tabs from mobile to PC.after sync .

i can see open tabs below sing out in Firefox account window in my PC. i wanted to save them  but i only can select them  only one by one and i can not select all them together. 

also i did right click and left click on title: "Firefox on Samsung sm-A125f" but nothing occurred. can you guide me about this issue? i wanted to upload a image file( it is 20.2k) of it, but after 10 minutes it did not uploaded. i tried twice , but it was not successful. thanks

goy123t 於 1 年前 詢問

Alex R 最近回覆於 1 年前

  • 封存

104.0.2 firefox doesn't allow download button to display dropdown downloaded file list

Up until now, when I've downloaded a file, the download button displays a dropdown of the downloaded file list, and other features. After updating to v104.0.2, the downlo… (閱讀更多)

Up until now, when I've downloaded a file, the download button displays a dropdown of the downloaded file list, and other features. After updating to v104.0.2, the download button ONLY highlights to signal that files have been downloaded to my download directory, but clicking this button does nothing. Instead, the only way I can access my downloads is by Ctrl-J or clicking on the 3-horiz-lines and select Downloads, which opens a separate dialog box. Why this change? How can I restore the old/standard feature which worked quickly and intuitively?

etcadman 於 1 年前 詢問

jscher2000 - Support Volunteer 最近回覆於 1 年前