72,762 questions
1
vote
0
answers
3
views
Live Server in VSCode Not Refreshing Browser Despite Autosave Enabled
I am facing an issue with the Live Server extension in Visual Studio Code. Even though I have enabled Autosave and set it to 100ms, the browser does not refresh automatically when I make changes to my ...
0
votes
0
answers
6
views
Headless Chrome is not seeng that I am logged in to a site
Currently when I use headless chrome (chrome --headless --dump-dom) to get the contents of sites that require login (but keep you logged in), I always get a redirect to the contents of the ...
0
votes
0
answers
14
views
Puppeteer with browser context opens an extra window windows
For some reason, puppeteer seems to open two browser windows with this code. One with just one tab and it's about:blank. The other one starts with about:blank and redirects to the actually goes to the ...
1
vote
1
answer
41
views
What is the correct browser behaviour when you have CSS shorthands in combination with individual shorthand constituents?
Consider the following code.
a {
text-decoration-color: red;
}
.oops{
text-decoration: underline;
}
code {
border: 1px solid rgb(0 0 0 / 0.2);
padding-inline: 0.5em;
}
<p>This <...
0
votes
0
answers
6
views
how to create google cast receiver without device
How to deploy Google CastReceiver on our own device without a Google Cast device, and then use the Android MediaRouteButton function to search for and connect to the CastReceiver
Integrate Google cast ...
-2
votes
0
answers
19
views
Why does Safari (desktop and mobile) and Chrome (mobile only) behave weird with high high brightness filter values? [closed]
I'm noticing a really weird issue, however, I'm not sure if I'm outside of spec or not.
I wrote an app a long time ago that uses Red images and allows you to use multiple filters like hueRotate, ...
-2
votes
1
answer
52
views
Why is this code hitting the youtube api data limit? (10,000 queries a day)
have this bit of code in a chrome extension background.js file, it should only run when a button is clicked that I'm loading onto the page using contentScript.js in the service worker I only see 4 API ...
0
votes
1
answer
18
views
Wordpress and images stretching with Chrome and sizes="auto"
I just can't stop images that are lazy loaded in Chrome (Version 131.0.6778.109 (Official Build) (64-bit) ) with Wordpress 6.7.1 from vertically stretching.
-1
votes
0
answers
87
views
Web crashes when debugging loop exit in Chrome-based browsers [closed]
I am trying to implement a loop with JavaScript and I found something very odd.
The issue is that the site crashes evaluating the for/while condition when is about to turn false. I couldn't figure the ...
0
votes
0
answers
14
views
Header not printing for every page in Chrome-based browser
This is not a request for help but a possible solution for everybody who might encounter this problem.
I had a quite complex header that when printed would not appear from the second page onward.
...
-1
votes
0
answers
26
views
Browser "disable cache" Header no CORS effect
I have a web app that doesn't allow the Cache-Control header in CORS requests.
If I explicitly set said header, the request gets denied appropriately...
Now I open my browser dev tools, activate "...
0
votes
0
answers
27
views
What did Google change in Chromium version 126 that made my PWA not work on Chromium mobile anymore?
Here's all the browsers I tested:
chromium mobile before v126 (installation button appears, PWA installed successfully)
chromium mobile v126-v131 (only generic homescreen shortcut appears, opens the ...
0
votes
0
answers
13
views
How to close most recently opened chrome window with python
i'm working on a python project in which I open a new chrome window, open a bunch of tabs in that window, and close that window. the problem is that I don't want to kill the chrome.exe process since I ...
0
votes
0
answers
29
views
How do I keep WebSocket alive when loading extension via command line?
I have been developing a Chrome extension that uses a WebSocket to communicate with an application on the local machine (via the local loopback interface). However, the WebSocket will randomly close, ...
0
votes
1
answer
38
views
How to convert Chrome cookies "expiration_time" to a readable date / time?
On Google Chrome's cookies, the timestamp values are like this :
1765064691
What calculation i need to do in order to convert this integer, to a human readable date / time ?