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… (read more)

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 14 minutes ago

eliminate 3rd line of address bar

at the very top of firefox browser are 3 rows...the highest row is the list of open tabs.....the middle row is the address bar itself with various icons....the lowest row… (read more)

at the very top of firefox browser are 3 rows...the highest row is the list of open tabs.....the middle row is the address bar itself with various icons....the lowest row which is the third row begins with 'import bookmarks' 'getting started' and then various website suggestions.

that 3rd row takes up space and has no useful functionality for me .....i've tried changing the settings but i can't alter it... is there a harmless way to eliminate that third row? thanks

Asked by wdobni 36 minutes ago

gah. Your tab just crashed

About a week ago I started getting these message windows 'Gah. Your tab has crashed.' I have never seen these before now they're everywhere. I have tried all the Troubl… (read more)

About a week ago I started getting these message windows 'Gah. Your tab has crashed.' I have never seen these before now they're everywhere. I have tried all the Troubleshoot procedures and nothing seems to help. I've done all the cleanups and checked the add-ons but there is nothing new and no changes I am aware of.

Asked by i4c4u2b 48 minutes ago

Last reply by Paul 38 minutes ago

Certain websites black screened.

Hello! About two weeks ago I opened up Firefox, and found that certain - well most - websites got switched to a very dark mode that broke the website. Websites like Joa… (read more)

Hello! About two weeks ago I opened up Firefox, and found that certain - well most - websites got switched to a very dark mode that broke the website. Websites like Joann had all the background as black and when searching I could only see what was brought up when I moused over the option. The Chell in the Rain website is completely black when part of the appeal is the artwork. Youtube? Black. Libby? Black. Accuweather? Black. Google Docs... that's actually fine.

I don't mind dark mode, but it's broken how several of these websites work.

Asked by Mina 50 minutes ago

FireFox on Mac preventing computer shutdown

How do I stop firefox from preventing my mac from shutting down? All other open apps are closed and data and settings saved automatically by apple when i hit shut down bu… (read more)

How do I stop firefox from preventing my mac from shutting down? All other open apps are closed and data and settings saved automatically by apple when i hit shut down but firefox just stays open and prevents shutdown until i close it manually.

Asked by Me 21 hours ago

Last reply by Dropa 1 hour ago

Sync problem after a clean windows install

Hi! My windows suddenly encountered problems and I had to reinstall it, but after reinstalling win and Firefox and logging into my account, none of my data loaded to the … (read more)

Hi! My windows suddenly encountered problems and I had to reinstall it, but after reinstalling win and Firefox and logging into my account, none of my data loaded to the new Firefox. Please help, for me, loosing that much of bookmarks and passwords, is just like a matter of death and life.

Asked by Mohsen 3 days ago

Last reply by Mohsen 1 hour ago

Launching Firefox

After installing Apple Ventura, and trouble with User Accounts, Firefox won't open, giving me the error message about not finding or having a Profile. I did all of the s… (read more)

After installing Apple Ventura, and trouble with User Accounts, Firefox won't open, giving me the error message about not finding or having a Profile.

I did all of the suggested fixes on the Help pages, renaming files with "OLD" etc., finally deleting the entire Firefox folder in Library/Application Support, and the program still won't launch and gives me the same message about not finding a "profile."

Please advise how I can eradicate every trace of Firefox on the computer and start over; the program should create a new profile and let me use the program, but it's refusing to do so.

Asked by barton1899 1 hour ago

clear cache add on

if i have the "clear cache" addon: and i have 2 browser instances open, when i clear the cache, does it clear both instances or just the one whose button i clicked ?… (read more)

if i have the "clear cache" addon: and i have 2 browser instances open, when i clear the cache, does it clear both instances or just the one whose button i clicked ?

Asked by jimmyolson2064 2 hours ago

Emails not displaying

inbox displays the subject and date only of new emails ie NO message is shown nor any activity eg delete, forward etc. Double click on email and it is displayed in a new … (read more)

inbox displays the subject and date only of new emails ie NO message is shown nor any activity eg delete, forward etc. Double click on email and it is displayed in a new window

Asked by philipinjozi 1 day ago

Last reply by philipinjozi 2 hours ago

Firefox can’t establish a websocket connection to the server

Hi, I am working on websocket with javascript and php. Let me share my code here: index.php is: <title>WebSocket Chat</title> &l… (read more)

Hi, I am working on websocket with javascript and php. Let me share my code here:

index.php is:

   
   
    
      <title>WebSocket Chat</title>
        <meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; connect-src 'self' cstechnologyindia.com:8080">

    
    
      WebSocket Chat
      
<input type="text" id="messageInput" placeholder="Type your message..."> <button id="sendButton">Send</button> <script> const socket = new WebSocket('wss://cstechnologyindia.com/websocket1'); // Function to save message on the server function saveMessage(message) { const xhr = new XMLHttpRequest(); xhr.open('POST', 'save-message.php'); xhr.setRequestHeader('Content-Type', 'application/json'); xhr.send(JSON.stringify({ message: message })); } // Function to fetch messages from the server function fetchMessages() { const xhr = new XMLHttpRequest(); xhr.open('GET', 'fetch-messages.php'); xhr.onreadystatechange = function() { if (xhr.readyState === XMLHttpRequest.DONE) { if (xhr.status === 200) { const messages = JSON.parse(xhr.responseText); const chatBox = document.getElementById('chatBox'); messages.forEach(function(message) { const messageElement = document.createElement('div'); messageElement.textContent = message.fname; chatBox.appendChild(messageElement); }); } else { console.log('Error fetching messages:', xhr.status); } } }; xhr.send(); } // Event listener for receiving messages from the server socket.addEventListener('message', function(event) { const message = event.data; const chatBox = document.getElementById('chatBox'); const messageElement = document.createElement('div'); messageElement.textContent = message; chatBox.appendChild(messageElement); }); const sendButton = document.getElementById('sendButton'); sendButton.addEventListener('click', function() { const messageInput = document.getElementById('messageInput'); const message = messageInput.value; socket.send(message); messageInput.value = ''; // Save the sent message on the server saveMessage(message); }); // Fetch messages when the page loads fetchMessages(); </script>


server.php is:

   
   use Ratchet\MessageComponentInterface;
   use Ratchet\ConnectionInterface;
   use Ratchet\Server\IoServer;
   use Ratchet\Http\HttpServer;
   use Ratchet\WebSocket\WsServer;
   use Symfony\Component\HttpFoundation\Request;
   class Chat implements MessageComponentInterface {
     protected $clients;
     public function __construct() {
       $this->clients = new \SplObjectStorage;
     }
   public function onOpen(ConnectionInterface $conn) {
       $request = $conn->httpRequest;
       // Handle the WebSocket handshake here
       // You can perform any necessary checks or validation before accepting the connection
        // Example: Check if the WebSocket upgrade header is present
       if (!$request->hasHeader('Upgrade') || strtolower($request->getHeader('Upgrade')[0]) !== 'websocket') {
           // Close the connection if the Upgrade header is missing or incorrect
           $conn->close();
           return;
       }
        // Example: Check if the request contains the expected WebSocket version
        if (!$request->hasHeader('Sec-WebSocket-Version') || $request->getHeader('Sec-WebSocket-Version')[0] !== '13') {
           // Close the connection if the WebSocket version is not supported
           $conn->close();
           return;
        }
        // Example: Check other necessary conditions
        // Store the connection
        $this->clients->attach($conn);
      }
     public function onMessage(ConnectionInterface $from, $msg) {
       $message = htmlspecialchars($msg);
       foreach ($this->clients as $client) {
         $client->send($message);
       }
      }
     public function onClose(ConnectionInterface $conn) {
       $this->clients->detach($conn);
     }
     public function onError(ConnectionInterface $conn, \Exception $e) {
       echo "An error has occurred: {$e->getMessage()}\n";
       $conn->close();
     }
    }
    $chat = new Chat;
    $server = IoServer::factory(
     new HttpServer(
       new WsServer($chat)
     ),
     8080
   );
   $server->run();

The websocket is working all the browser except only firefox. It gives error: Firefox can’t establish a connection to the server at wss://cstechnologyindia.com/websocket1.

I am trying to solve it from past 2 days. I'm using a shared hosting. The hosting provider is saying that everything is perfect from our side. Now I'm hopeless. Please solve my problem anyone. Please check added image. Also I've valid https certificate. Please check attached image.

Asked by vinubangs 3 hours ago

Trojan Warning from windows defender

Im very worried, today (8th of june) I got a trojan warning from windows defender. the contamination affected this file path : file: C:\Users\(my name)\AppData\Roa… (read more)

Im very worried, today (8th of june) I got a trojan warning from windows defender. the contamination affected this file path :

file: C:\Users\(my name)\AppData\Roaming\Mozilla\Firefox\Profiles\owhmdxi4.default-release\extensions\langpack-en-US@firefox.mozilla.org.xpi

below i have a picture of the addons i was using at the time and also the virus report.

Asked by Ville 20 hours ago

Last reply by Ville 3 hours ago

How do I remove "synced tabs" from history menu?

After the latest update, "synced tabs" suddenly appeared in my history menu above Recently Closed Tabs. I don't use syncing of any sort so this is just a nuisance. How ca… (read more)

After the latest update, "synced tabs" suddenly appeared in my history menu above Recently Closed Tabs. I don't use syncing of any sort so this is just a nuisance. How can I get rid of it?

Asked by cfcentaurea 3 hours ago

Various Websites give SSL_ERROR_NO_CYPHER_OVERLAP

In the last few days, I have noticed that a number of websites are throwing me SSL_ERROR_NO_CYPHER_OVERLAP errors. Most websites, particularly more modern websites, seem … (read more)

In the last few days, I have noticed that a number of websites are throwing me SSL_ERROR_NO_CYPHER_OVERLAP errors. Most websites, particularly more modern websites, seem to not have this issue. As some more professional examples, www.twitch.tv and www.dndbeyond.com throw this error. I have tried setting temporarily TLS version fallback limit and min to 0, with no change. I'm not really sure how to go about debugging what cyphers these websites do support and why they are throwing these errors. Any help on where to start would be greatly apprecaited.

Asked by acesoyster 1 day ago

Last reply by acesoyster 4 hours ago

  • حُلّت

British Airways enable cookies page essential cookies greyed out so can't log in

British Airways enable cookies page, essential cookies greyed out so can't log in. The other three cookie choices are live and ticked. This problem has been here for wee… (read more)

British Airways enable cookies page, essential cookies greyed out so can't log in. The other three cookie choices are live and ticked. This problem has been here for weeks - can anyone suggest what is wrong?

Asked by elsfield 1 day ago

Answered by jonzn4SUSE 1 day ago

Tabs below Bookmarks - Firefox 113 and all future releases.

Starting the quest (i.e., tilting at a huge, anonymous, darkside windmill) anew. To the Firefox volunteers, developers, moderators, or whoever might read this that is w… (read more)

Starting the quest (i.e., tilting at a huge, anonymous, darkside windmill) anew.

To the Firefox volunteers, developers, moderators, or whoever might read this that is willing and able to do something about it: Provide a means for end users to place the Tabs below the Bookmarks on screen.

Asked by Troyce 15 hours ago

Last reply by Terry 6 hours ago