python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Chrome Extension restarts on its own when service worker is not open
Whenever I have the service worker opened, my chrome extension seems to work perfectly but whenever I do not have it opened, seconds later the chrome extension just restarts on its own without any sav...
Vigilante
Votes: 0
Answers: 0
Fetch inside content script fails with chrome-extension://invalid
Inside my content script, I resolve a URL and execute a fetch on it:
let url = chrome.runtime.getURL('/hints/heart.html')
console.log("url = " + url)
fetch(url)
.then(r => r.text())...

Florian Walther
Votes: 0
Answers: 1
Can chrome extension content scripts load images regardless of host's Content Security Policy?
I have created a Chrome extension with MV3. One of my content scripts pops up an image (a web_accessible_resource) when a user is on two specific sites. The img loads fine on site #1, but not on sit...
elunomas
Votes: 0
Answers: 0
CHROME-EXTENSION: state inside of the same state
I am working on a project that creates a chrome extension. I use slices with redux-toolkit. Here is my first version of redux:
case 'TABMANAGER_UPDATE':
let newUrl =
action.payload &...
Ceren Keklik
Votes: 0
Answers: 0