Top "Google-chrome-extension" questions

Extension development for the Google Chrome web browser.

Chrome Extension Message passing: response not sent

I am trying to pass messages between content script and the extension Here is what I have in content-script chrome.…

javascript google-chrome google-chrome-extension google-chrome-app
What is a .pem file and How to use it?

I am designing a new chrome extension and when I package it then I get 2 file: a .crx file and …

google-chrome google-chrome-extension pem
Reading response headers with Fetch API

I'm in a Google Chrome extension with permissions for "*://*/*" and I'm trying to make the switch from XMLHttpRequest to the …

javascript google-chrome-extension
Google Chrome Extensions - Can't load local images with CSS

I have a simple Chrome extension that uses the content script feature to modify a website. More specifically, the background-image …

css google-chrome-extension background-image
How do I send an HTTP GET request from a Chrome extension?

I'm working on a chrome extension that sends an HTTP request using the method GET. How do I send at …

javascript google-chrome google-chrome-extension get xmlhttprequest
Getting around X-Frame-Options DENY in a Chrome extension?

I'm the author of Intab, a Chrome extension that lets you view a link inline as opposed to a new …

javascript iframe google-chrome-extension x-frame-options
sending message to chrome extension from a web page

I want to send message from the console of the random web page to my chrome extension. chrome.extension.sendMessage …

google-chrome-extension google-chrome-devtools
How install crx Chrome extension via command line?

Currently, the only way to install a Chrome extension (while working in development) is to drag it from the desktop …

google-chrome google-chrome-extension automation google-chrome-devtools
Is there any way of passing additional data via custom events?

I need to pass data between two autonomic user scripts - ideally without touching the unsafeWindow object - and I …

javascript dom google-chrome-extension dom-events userscripts
How to communicate between popup.js and background.js in chrome extension?

The message from popup.js is being posted twice to background.js, but I get absolutely nothing from background.js. …

javascript google-chrome-extension