Category "google-chrome-extension"

How to intercept or pause http status code 301 request in a browser

I am looking for a solution to interrupt or pause a 301 ( redirect ) request in Chrome dev tools. My scenario is I have an API integration with a local payment

How can I customize user's current website cursor with my Chrome Extension using Vanilla JS?

I'm developing this Chrome Extension for Custom Cursors, I have the SVG path that I want to apply to the website's files that the user is using. What can I writ

Injecting React providers around page with Chrome Extension

I'm writing a Chrome extension that injects some React components into a page. Some of these components need to be wrapped by providers to work properly (for ex

How to get network response code (javascript)

I recently added a linkedin tag to my website for data tracking very similar to google tag or fb pixels. For me to know the tag is installed correctly, I would

DOM Parser Chrome extension memory leak

The problem I have developed an extension that intercepts web requests, gets the HTML the web request originated from and processes it. I have used the DOMParse

Youtube API getting "No filter selected" error on chrome extension when trying to call insert

I'm trying to call the youtube API to make a playlist on my channel from a chrome extension and I keep getting this error code returned back to me; domain: "you

Can chrome extensions access other extensions' background pages?

I'm trying to build a Chrome extension A that makes use of network requests -- however, the network requests that are relevant to me are made through a separate

Refused to load the script 'https://apis.google.com/js/api.js' because it violates the following Content Security Policy directive

I want to add google api in my popup.html but there is an error in cosole Refused to load the script 'https://apis.google.com/js/api.js' because it violates the

Is there a JavaScript / jQuery DOM change listener?

Essentially I want to have a script execute when the contents of a DIV change. Since the scripts are separate (content script in the Chrome extension & webp

Should I migrate to Manifest v3 because most of the features of my extension depends on persistent background

I have a chrome extension which uses WebSocket, webrtc, audio and HTTP connections heavily, also I am using react-redux in the background to keep a state of UI

Can not use variables from background-script inside the popup-script after using getBackgroundpage()

I am new to chrome extensions. I want to program a timer that alerts the user every 40 minutes and tells him to drink a cup of water, but I ran in some issues.

React extension is missing in Dev tools

I am trying to get my react extension working for local development, but "Components" and "Profiler" is missing in the Chrome developer tools. This only happens

importScripts while error thrown from one of the script

In my chrome extension (manifest V3) I want to import some scripts like jquery and more. Inside my backgound.js I have: try { importScripts('/js/jquery-3.4.

How to convert Javascript array into CSV file and download it from Chrome Extension?

Hello i am new to Chrome Extension and developing it in angularjs and i am trying to convert array into csv file and download it from Chrome Extension. i have

Firefox extension request is interpreted as CORS

When porting my Chrome extension to a Firefox web-extension, I can't make any network requests because they are blocked by the same origin policy. As an exampl

How can I check if a browser is Chromium-based?

I have a Chrome extension, and I am currently writing a website to advertise it. I know that a Chrome extension can be installed in all Chromium-based browsers

Can chrome.storage save "advanced" objects like Date or Map?

I made a chrome extension that manages internet history, browser cookies, etc. I'm trying to make a notification if you don't run it for a week, so I used chrom

How to filter chat on whatsapp web using content script?

I am actually creating a chrome extension which creates some tabs in whatsapp web like all, unread, groups etc. And when we select any of these tabs it will fil

How to detect if a tab is unloaded after you restart the Chrome browser?

Let's say I have a bunch of tabs opened in Chrome, I close the browser and then reopen it. Those tabs will remain unloaded, until I click on them, then they wil

Chrome Extension: How do I inject a script that the user provided?

I'm making an extension for chrome where the user can input a script, then press "run" to inject it into the current tab. I am using MV3 (manifest v3). Are ther