This tag is dedicated to questions about extension development for the Google Chrome web browser.
41
votes
1answer
12k views
Building a Chrome Extension - Inject code in a page using a Content script
I'm learning how to create chrome extensions and I just started developing one to catch youtube events. I want to use it with youtube flash player (later i will try to make it compatible with html5).
...
72
votes
3answers
27k views
Is there a 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 chrome extension & webpage script), I need a way simply observe ...
8
votes
2answers
6k views
Chrome extension code vs Content scripts vs Injected scripts
I am trying to get my Chrome Extension to run the function init() whenever a new page is loaded, but I am having trouble trying to understand how to do this. From what I understand, I need to do the ...
3
votes
2answers
1k views
Port error while changing chrome extension from manifest v1 to v2
While attempting to port the extension from manifest version 1 to version 2, this appeared:
Port error: Could not establish connection. Receiving end does not
exist. ...
2
votes
2answers
3k views
Chrome extension - retrieving Gmail's original message
I am working on an extension for Chrome. I wish parse the content of the "original" Gmail message (the currently viewed message).
I am familiar with programmatically click Gmail's "show ...
8
votes
1answer
2k views
Where to read console messages from background.js in a Chrome extension?
I just started out with Google Chrome extensions and I can't seem to log to console from my background js. When an error occurs (because of a syntax error, for example), I can't find any error ...
15
votes
4answers
16k views
Is there a way to simulate key presses or a click with javascript?
I wrote a google chrome extension and the site that I want to use my extension on requirements me to click or tab onto a text box (because I think it runs javascript verification "onclick" only). Now ...
3
votes
1answer
2k views
After calling chrome.tabs.query, the results are not available
I'm creating (learning) an extension for Google Chrome.
To debug some code, I inserted console.log(), as follows:
var fourmTabs = new Array();
chrome.tabs.query({}, function (tabs) {
for (var i ...
9
votes
6answers
9k views
create a file using javascript in chrome on client side
I would like to know if I can create a text file and save the file in the users "Downloads" section in his/her computer using javascript. The way my feature should work is when the user clicks the ...
19
votes
4answers
14k views
Chrome Extension: how to capture selected text and send to a web service
For the Google Chrome extension, I need to capture selected text in a web page and send to a web service. I'm stuck!
First I tried a bookmarklet, but Chrome on Mac seems to have some bookmarklet ...
13
votes
6answers
6k views
Check whether user has a Chrome extension installed
I am in the process of building a Chrome extension, and for the whole thing to work the way I would like it to, I need an external JavaScript script to be able to detect if a user has my extension ...
18
votes
3answers
15k views
Injecting JS functions into the page from a Greasemonkey script on Chrome
I have a Greasemonkey script that works just fine in Firefox and Opera. I struggle with getting it to work in Chrome, however. The problem is injecting a function into the page that can be invoked by ...
9
votes
3answers
2k views
Can I programmatically open the devtools from a Google Chrome extension?
I have a chrome extension which hooks into the devtools. Ideally I want a badge that, when clicked, opens up the devtools on the new tab which I created. Is there any way to do this from the ...
3
votes
1answer
1k views
My CSS is not getting injected through my content script
Can anyone explain this to me. I'm trying to inject a CSS file onto a webpage using the content_script with Google extensions, but my css file never gets added to the webpage. Can someone tell me what ...
25
votes
3answers
5k views
chrome extension first run
How can I find out if my extension is being run for the first time / has just been upgraded?
Thanks!
18
votes
3answers
4k views
Upload a File in a Google Chrome Extension
I'm writing an extension for Chrome, and I need to upload a file from the page the user is currently on to my server to be processed, I cannot figure out how to upload the file though. I considered ...
3
votes
2answers
7k views
Chrome Extension: Port error: Could not establish connection. Receiving end does not exist.
When trying to communicate between my Content- and Background Script I get the following errors:
Port error: Could not establish connection. Receiving end does not exist.
Error in event handler for ...
18
votes
3answers
21k views
Chrome sendrequest error: TypeError: Converting circular structure to JSON
I've got the following...
chrome.extension.sendRequest({
req: "getDocument",
docu: pagedoc,
name: 'name'
}, function(response){
var efjs = ...
19
votes
2answers
7k views
UserScripts & Greasemonkey: calling a website's JavaScript functions
I'm creating a UserScript extension for Firefox & Chrome and I'm trying to use some of the code in the website's JavaScript, e.g.:
function: myFunction(){
return Grooveshark.playNextSong();
...
11
votes
7answers
2k views
Google Chrome - Alphanumeric hashes to identify extensions
Google Chrome is using alpha numeric hashes as identifiers for the Chrome extensions. For eg. "ajpgkpeckebdhofmmjfgcjjiiejpodla" is the identifier for XMarks Bookmark Sync extension.
Which algorithm ...
1
vote
1answer
478 views
Google chrome rehost image extension
I would like to have a Google Chrome extension to rehost any image I click on.
For example, I have a html document with images using <img> tag. I want to have a extension which will rehost ...
20
votes
3answers
12k views
How to wait until an element exists?
I'm working on an Extension in Chrome, and I'm wondering: what's the best way to find out when an element comes into existence? Using plain javascript, with an interval that checks until an element ...
6
votes
2answers
13k views
SECURITY_ERR: DOM Exception 18 on using getImageData in a Chrome Extension
I'm writing my first Chrome extension. I'm trying to use jQuery and the jQuery Image Desaturate plugin to desaturate an image on a page on http://www.flickr.com.
I'm loading my script (and jQuery and ...
9
votes
1answer
6k views
Google Chrome Extension - Accessing The DOM
I have been searching around the web to find out how to access the current tabs DOM to extract information out of a page from the background.html. So far I have had no luck, or at least nothing I ...
1
vote
1answer
3k views
popup window in Chrome extension
I am writing a Chrome extension, and I want a login window to be popped up when users click on the context menu so that user can input username and password. In Chrome extension, I only found ...
3
votes
1answer
1k views
access iframe content from a chrome's extension content script
I'm doing a plugin to do some transformations to the interface. I keep getting "unsafe javascript attempt to access frame with url.... Domains, protocols and ports must match" (typical cross site ...
0
votes
3answers
2k views
Chrome Redirect Extension
Does anyone know of a Google chrome extension that will automatically redirect the tab when it visits a certain url.
for example, when I visit http://yahoo.com/ I want it to automatically change my ...
0
votes
1answer
460 views
Communication between ContentScript.js and Chrome Extension
I simply want to send the current tab url to my extension:
Following is my manifest.json
{
"name": "DocUrlExtention",
"version": "1.0",
"manifest_version": 2,
"description": "The first extension ...
49
votes
9answers
7k views
How do I auto-reload a Chrome extension I'm developing?
I'd like for my chrome extension to reload every time I save a file in the extension folder, without having to explicitly click "reload" in chrome://extensions/. Is this possible?
Edit: I'm aware I ...
38
votes
2answers
12k views
Chrome extension: accessing localstorage in content script
So, i have an options page where the user can define certain options and it saves it in localstorage:
options.html
Now, i also have a content script that needs to get the options that were defined on ...
26
votes
9answers
17k views
How to save CSS changes of Styles panel of Chrome Developer Tools?
How to save CSS changes of Styles panel of Google Chrome Developer Tools?
At tool's website it's mentioned that we can see all change in resource panel
But I'm working locally on a CSS file but ...
20
votes
3answers
16k views
Get URL and save it | Chrome Extension
Basically on my window (when you click the icon) it should open and show the URL of the tab and next to it I want it to say "Save", it will save it to the localStorage, and to be displayed below into ...
4
votes
2answers
5k views
Making a Chrome Extension download a file
I am creating an extension that will download a mp3 file off a website. I am trying to do this by creating a new tab with the link to the mp3 file, but chrome keeps opening it inside the player ...
1
vote
3answers
2k views
Text selection and bubble overlay as Chrome extension
I am looking for a way to select text on a website in Chrome and have a overlay/tooltip pop with content depending on the text selection.
Has anyone done this before or knows from the top of their ...
3
votes
1answer
993 views
How can I detect keyboard events in Gmail
I am writing a browser extension that needs to attach handlers to the keyup and keydown events on all pages. I can get it working pretty well with the following content script code.
...
5
votes
1answer
426 views
Chrome Extension Content Script on https://chrome.google.com/webstore/
Is Chrome blocking access to the webstore url?
I would like to make an extension that displays a like button beside the +1 button, but it looks like that content scripts are not working on ...
5
votes
2answers
2k views
Login to website with chrome extension and get data from it
I am developing a Chrome/Chromium extension that will be reading school grades from school system with grades. Problem is that site doesn't remember logged user. Because of this, I cannot use AJAX.
...
17
votes
2answers
10k views
jQuery .on not working with dynamic DOM/HTML
I'm not exactly sure if this is due to my manifest setup, or if there's something going on with the .on event and pages that generate content/modify content on the fly, but I've run into a stumbling ...
8
votes
1answer
3k views
Chrome extension adding external javascript to current page's html
I am adding some external JavaScript to the end of the page via my chrome extension. The external JavaScript then tries to post some data back to the server, however that is not taking place.
The ...
7
votes
1answer
1k views
How can I detect the current tab's mime type in a Google Chrome extension?
I want to see if the current tab is a PDF file from a background page.
I can check the url for .pdf at the end but there are some PDF files that don't have that.
2
votes
2answers
2k views
Downloading mp3 files using html5 blobs in a chrome-extension
I am trying to create a google-chrome-extension that will download an mp3 file. I am trying to use HTML5 blobs and an iframe to trigger a download, but it doesn't seem to be working. Here is my code:
...
1
vote
3answers
12k views
Writing to local file system in Chrome extension
chrome.tabs.onUpdated.addListener(checkForValidUrl);
function checkForValidUrl(tabId, changeInfo, tab) {
if (tab.url.indexOf('https') > -1) {
var tabURL = tab.url;
...
6
votes
2answers
11k views
Google chrome extension: local storage
I'm developing an extension for Google Chrome, and have run into some trouble.I created an options.html page and added it to the manifest.json file.The page shows properly.
I saved the options, and ...
4
votes
3answers
4k views
Load JQuery into a Chrome extension?
I'm attempting to load JQuery into my Chrome extension and make it equal to an object but I'm wondering how would I go about this? basically I'd like something like...
jQuery = ...
3
votes
1answer
724 views
Creating dynamic context menu in Chrome Extension is failing
I am trying to create entries on the Chrome context menu based on what is selected.
I found several questions about this on Stackoverflow, and for all of them the answer is: use a content script with ...
1
vote
2answers
404 views
Retrieving which tabs are open in Chrome?
Is there a way to retrieve all the tabs open and sort them in to an array in Chrome? So if Gmail and YouTube were open, there would be two entries in the array entitled "gmail.com" and "youtube.com".
6
votes
4answers
4k views
Event onBrowserClose for Google Chrome?
I am developing an extension for Google Chrome browser.
Background script, everytime , authorizes on a server that Though XMPP API, and Subscribed for a PubSub node. I need to unsubscribe on the exit ...
3
votes
2answers
261 views
Invoking a Google Chrome extension from Javascript
There is an excellent extension called Blipshot which takes page screenshots. I need to invoke the extension with page level javascript, instead of clicking its icon. Is this possible?
3
votes
1answer
2k views
using chrome.experimental.webRequest API to change loaded file?
I'm trying to use webRequest API to change the loaded .swf file on a webpage... The page loads a file called chat.swf, but i want to redirect to chat2.swf in the same directory in order to use the ...
3
votes
3answers
443 views
How to reference the version information in a Google Chrome extension?
I use
chrome.tabs.create({url:"URL here"})
to open a new tab in my LRG. To this URL I want to append the version number of the extension, which is specified in the manifest.json file:
"version": ...

