Skip to main content

Questions tagged [google-chrome-extension]

Extension development for the Google Chrome web browser. You write them using web technologies such as HTML, JavaScript, and CSS.

google-chrome-extension
0 votes
1 answer
8 views

Chrome MV3 extension: Getting "Site has updated in the background" notification even though userFacing: false flag is set

We're using WebPush in our newly migrated extension to MV3. It's both for user-facing notifications and background updates. Some users have been complaining that they are seeing "Site has updated ...
Erik Rothoff's user avatar
  • 5,025
0 votes
2 answers
22 views

Chrome Extension on youtube.com - How can I use the Youtube Ajax navigation in Javascript?

I'm developping a Chrome Extension that adds new feeds content on Youtube.com I would like to add new thumbnails links that will open new video but I can't figure out how can I use their ajax ...
lePouns's user avatar
  • 39
0 votes
0 answers
11 views

UI Not Updating When Checkbox is Clicked Inside an iframe (Google Chrome Extension)

I am working on a Chrome extension that interacts with an iframe on a webpage. What I want to do is click on a checkbox inside the iframe, after which the UI should update as if a regular user clicked ...
PioPio's user avatar
  • 1
0 votes
0 answers
16 views

403 Error response to request from browser extension

I am creating a chrome extension. I am calling this code in background.js fetch('http://localhost:5000/receive_html', { method: 'GET' }) .then(response => { if (!response.ok) { ...
TANMAY BHAYANI's user avatar
-1 votes
0 answers
6 views

Zoom Without Page Layout Changes: Using Mouse to Mimic Touchpad Pinch Gesture

Is it possible to use the pinch gesture feature of a touchpad with a mouse in a web browser? Currently, the built-in zoom feature alters the page layout when zooming in or out. However, using the ...
Devendra Patil's user avatar
1 vote
0 answers
11 views

Issues using the captureVisibleTab API from side panel

I'm trying to build an chrome extension that captures and displays screen shots using a global side panel. I've managed to successfully use the following code from a popup. However when I migrate the ...
The Ginger Fox's user avatar
0 votes
1 answer
21 views

Manage current window in Incognito Mode? Chrome API

I'm making a chrome extension that opens an incognito window/tab from background, opens a website, and executes some script in the page, but the window object returned is always null no matter what I ...
Benjamin Bustelo's user avatar
0 votes
0 answers
11 views

Extension and App webworker communication

I've got a PWA with a webworker responding to requests at /api/. I also have an extension that goes with the app and I'd love it to be able to make requests of the PWA. I've tried a number of ways ...
Dave's user avatar
  • 1,688
0 votes
0 answers
25 views

Chrome extension manifest file and content_security_policy and inline JS script

I'm using https://github.com/mingyaulee/Blazor.BrowserExtension to make a Chrome browser extension using Blazor WASM / Webassembly. The library generates the HTML and JS for the extension, one of the ...
levis84's user avatar
  • 1,034
0 votes
0 answers
13 views

Chrome Extension that adds an element left of all google search results

I am creating a chrome extension that inserts an element in front of every google search result. I am doing this by looping over all div's with an id of "a h3" on the google search page. ...
Bart S's user avatar
  • 13
0 votes
0 answers
15 views

Scraping Amazon Shopping Cart in Real time via a chrome extension

I am trying to build a chrome extension that in real time scrapes the amazon website as the user is on it and gets us the subtotal in the user's cart before they proceed to checkout. We will use this ...
Aryan Garg's user avatar
0 votes
0 answers
15 views

Why can't the icon for the Chrome extension I developed be displayed?

I am developing a Chrome extension that is displayed in the Developer Tools, similar to Network. I used the chrome.devtools.panels.create method and passed the iconPath parameter, but it didn't work. ...
fjxfitst's user avatar
0 votes
0 answers
19 views

Chrome extension keeps calling method over and over

My chrome extension keeps calling methods over and over again. I have a method which check if a user is "logged in" (if they have some values saved in their local storage). This method ...
laskdjf's user avatar
  • 1,182
0 votes
0 answers
10 views

How to add a custom extensions on Chrome Devtools Frontend bundle source code?

I took the devtools front-end source code from a place and packaged it (as shown above), in this source code, how do I add an extension to it? Like this(below) Instead of installing an extension the ...
linjunchao's user avatar
0 votes
1 answer
32 views

Calling an authenticated Firebase Function from a chrome extension

I have a Firebase function that requires authentication per https://stackoverflow.com/a/44500591/82156: exports.ping = onCall(async (request) => { if (!request.auth?.uid) { throw new ...
emmby's user avatar
  • 100k

15 30 50 per page
1
2 3 4 5
1988