This tag is dedicated to questions about extension development for the Google Chrome web browser.

learn more… | top users | synonyms

0
votes
0answers
4 views

Chrome Extension: access separate html documents from contentscript

I have a Chrome extension that loads/injects a contentscript.js This script appends html and css to the webpage. Currently I have the html and css written into my contentscript. What I would like is ...
1
vote
0answers
5 views

Google Chrome extensions interaction with Native Client Applications

Is it possible to write a Chrome Extension that will interact with a Native Client application? I use IRSSI through the NaCl Secure Shell application, and I would like to write an extension that ...
1
vote
0answers
24 views

After adding ExtensionInstallSources preference with my URL to Chrome Preferences, still won't allow installing “.crx” packaged app

I added the preference ExtensionInstallSources (as per: http://www.chromium.org/administrators/policy-list-3#ExtensionInstallSources ), it still is not allowing me to install my "app.crx" from my URL. ...
0
votes
0answers
10 views

Chrome extension API callback called too early?

So I'm working on a Chrome extension and I've noticed that if I close a number of tabs at once (chrome.tabs.remove) the callback is called before the data is fully removed, so I end up with odd ...
0
votes
0answers
5 views

How to custom Chrome Extensions ID

I want to custom the Chrome Extensions ID, but I don't know how to do. Because I package the extension as crx file, the ID has change every time. Could anybody give me some information.
-1
votes
0answers
9 views

Another Cross-XHR related

I know that there's a bunch of questions about the "not allowed by Access-Control-Allow-Origin." error. But I've tried some of them without success. :( Some appointments: I'm trying to build a ...
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 ...
0
votes
0answers
14 views

Chrome extensions: injecting jQueryUI dialog and updating its contents programmatically

I'm trying to create a Chrome extension which reacts on right click when some text in a page being navigated is selected, sends this text to my web app, gets a JSON response from it, builds an HTML ...
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 ...
0
votes
0answers
5 views

Chrome Extension - first link is auto-focused in popup

How do I stop my Google Chrome extension's default action to auto-focus the first link in my popup.html? I know I could probably do some roundabout hack with JS or change the :focus CSS, but I think ...
1
vote
1answer
25 views

Display list of third party site requests

How do I get a list of all third party site requests (cross-site requests) made by a webpage I'm on? Do I log all the http request headers then strip everything off other than the GET URLs or is there ...
-1
votes
0answers
9 views

Error when uploading screenshot to Chrome Web Store [closed]

I have developed a small chrome extension and published it into the Chrome Web Store, but I run in trouble when I try to upload screenshots for the store. Instead of taking my image, i get redirected ...
0
votes
0answers
8 views

Chrome text-to-speech API doesn't work

I'm trying the chrome text-to-speech API but even the demo provided by google https://developer.chrome.com/trunk/extensions/examples/extensions/ttsdemo/ttsdemo.html doesn't work for me, I can't hear ...
0
votes
0answers
6 views

iPad Browser Tab Carousel - How to cycle browser tabs on iPad automatically?

I'm looking for a way to automatically cycle through browser tabs on an iPad. This chrome extension (tabcarousel) is exactly what I want (every 15 seconds), but it seems extensions aren't available on ...
2
votes
3answers
949 views

Google Chrome API: How do I add my app to show an icon on the “New Tab” (Apps) page?

I noticed that a "New Tab" page has an apps section, but by default an application is not added there. What do I need to do to have my application appear there?
1
vote
2answers
69 views

Persistent html menu in chrome extension

I have a menu that is shown on top of the web page when you click the extension button. I would like the menu to remain on page reload and when you navigate the domain - is this possible? ...
0
votes
0answers
21 views

Communication between scripts in Chrome Extension

I know there are many variations of this question already in existence here, but none of them seem to work for me. Details: I'm writing an extension that pulls some email data from emails you send ...
0
votes
1answer
16 views

Show Chrome extension version on options page?

I've got my manifest file with my version number and an options page. Is there a way to display the installed version and latest available version on the options page without needing to do it ...
0
votes
2answers
31 views

Is the same htm source edit extension available on windows?

I'm looking for the chrome extension that allows you to edit html source and instantly view the result. See the screenshot for mac, perhaps there is no such software available for windows version of ...
0
votes
1answer
171 views

Chrome extension context menu with custom context

I created a context menu in my chome extension as a checkbox, I am successfull to create the menu which will be visible only for editable field. The problem is I need to display menu as checked, ...
-2
votes
1answer
22 views

How to modify an extension from the Chrome Web Store?

I've seen this extension in the Chrome Web store, which shows the newest videos of a YouTube channel. I want to modify this extension in order to make it work with a different channel. How can I get ...
1
vote
0answers
19 views

Chrome 27: New Tab Page extension can't steal focus from Omnibox

With Chrome 27, it seems that extensions that override Chrome's New Tab Page can't take focus away from Chrome's Omnibox like they used to in previous versions of Chrome. Is there a new way to focus ...
0
votes
0answers
30 views

How to bind multiple actions to a keyboard event in javacript

I am trying to make a chrome extension that modifies the text in an active text area of a facebook chat window. But I want the change to take place only when the user presses the enter key so that the ...
0
votes
2answers
56 views

google cloud messaging for chrome api terms of service

When I tried to turn on gcm for chrome service in my google APIs console, I see this in terms & conditions, Google Cloud Messaging for Chrome API Terms of Service Last modified: September 1, ...
2
votes
2answers
226 views

Push notification for Google Chrome running on Windows?

I usually work locally and in an RDP session 50/50. I've two Google Chromes launched locally and in the terminal session. I am tired of copying and pasting URLs back and forth. I thought abount making ...
3
votes
2answers
52 views

javascript addEventListener is not working

I'm writing a simple chrome extension that lists all the open tabs, I have this code on it function changeTab(tabID){ chrome.tabs.update(tabID,{active:false}) } ...
0
votes
0answers
52 views

google cloud messaging for chrome receive error code 403 forbidden

I am in process of developing a Chrome extension program featuring google cloud messaging for chrome to push message to the instancess of my Chrome extension. When try to push message to GCM Server, ...
1
vote
1answer
37 views

Inserting a bar on top of every page on the web through browser extension

I'm writing a browser extension that inserts a banner on top of every page that the user visits. The banner must not be sticky and must not block any existing content. (my chrome extension) Currently ...
0
votes
0answers
16 views

Display a confirm box on closing tab or window on chrome from a chrome extension

I all, Is it possible to display a confirm box on closing tab or window on chrome from a chrome extension. I try Chrome.tabs.onRemoved, Chrome.tabs.onUpdated and beforeunload et unload and it ...
0
votes
0answers
16 views

How to handle waiting for asynchronous unavoidable load time in background page in chrome extensions?

I have an extension that loads a big database in the background page. The extension cannot do anything until that have completed. Problem is this extension is a newtab replacement which means ...
4
votes
2answers
719 views

How do I use WebStorm for Chrome Extension Development?

I just bought WebStorm 5 and so far have been really enjoying its Inspection features. One hitch I've run in to when developing my Chrome extension is that it doesn't recognize the chrome variable: ...
0
votes
2answers
35 views

How can I catch JS exceptions from async functions I don't control?

I know using try..catch for async functions doesn't work, and most advice I've read suggests using it inside the passed callback. However, without control over the async function which throws the ...
0
votes
0answers
30 views

Bug with chrome.storage?

I recently asked how to store an array with chrome.storage : Store an array with chrome.storage.local I my extension, I now have this function : function storeGeneratedKeyId(keyPairId){ ...
0
votes
2answers
42 views

How do I use a custom function in background.js for a Chrome Extension?

I'm writing a Chrome extension and I want to call a function in my background.js. This is the function: function getUrlVars(url) { var vars = {}; var parts = ...
1
vote
1answer
36 views

Google Endpoints API + Chrome Extension returns None for endpoints.get_current_user().user_id()

I am developing Google App Engine application written in Python and using Endpoints API. In conjunction, I am writing a Chrome Extension to interact with the Endpoints API. I've been running into lots ...
0
votes
0answers
21 views

Is it possible to display a popup window for the chrome extension while it is still processing?

I am making an extension that fetches some data from a url and then processes it and opens a new tab and displays the processed results. This process however takes a good 5 seconds or more(usually ...
0
votes
1answer
64 views

How to keep global variable unchanged in js

It's a Chrome Extension JS, i want to compare the DOM tree structure between DOM loaded and all these files loaded.Here I declare two variable first and then it will run into these 2 Listeners. But ...
0
votes
0answers
10 views

chrome.input undefined in latest Chrome Browser (26)

Referring to documentation and sample code found here: http://developer.chrome.com/extensions/input.ime.html I am trying to install the sample extension/code to test chrome.input.ime It seems that ...
1
vote
1answer
31 views

Override Chrome Extension Page CSS

I'm attempting to use the Stylish extension on the Chrome extensions page. But for some reason it's not working. I've attempted to Google this, but I only get answers about overriding CSS with an ...
0
votes
1answer
37 views

Can I access Chrome chrome://gpu/ data with Javascript?

When I open the page chrome://gpu/ I can see if the video is hardware accelerated or not, can I get that information using Javascript? (I'm building a Chrome extension so maybe there is an API?) Thx ...
1
vote
1answer
24 views

Error injecting a script in others tabs in my chrome extension

this is my first try building a chrome extension. I took the first example and motified it to my needs. I want to build a chrome extension that can controll the youtube player on different tabs from ...
0
votes
1answer
14 views

Meaning of document in chrome extension InjectDetails

I am using InjectDetails object in my chrome extension code. I am little confused about the document referred in runAt field. Here is snippet from documentation runAt ( optional enum of ...
1
vote
1answer
26 views

Chrome Extension: Unbind event listener added by script executed on the fly

I have a Chrome extension that will bind mousedown event listener on "body" when the browser action is clicked. And when the browser action is clicked again, it will unbind the mousedown event. But ...
2
votes
1answer
111 views

Disable chrome download multiple files confirmation

I developed a crawler with ruby watir-webdriver that downloads some files from a page. My problem is that when I click to download the second file, Chrome opens a bar in the top asking for ...
1
vote
1answer
47 views

Best way to include data (that will populate IndexedDB) with offline HTML5 app?

I'm building an offline HTML5 app (it will be delivered as a zipped up .crx file). It will be installed and used entirely offline. At no point will there be internet access. AFAIK, there is no way to ...
0
votes
1answer
27 views

how to get the debug information for chrome extension

I write a DOM tree protecter Chrome extension to examine if the DOM tree changes. I have the js files in background_page, how can i get those console.logs() in other test html files? What I can only ...
0
votes
0answers
15 views

Is it possible to request API permissions (and get authentication token?) through manifest permissions

I'm attempting to implement chrome.pushMessaging, but I'm a bit confused as to how to do it. I've got the https://developers.google.com/oauthplayground/ example working great and, if I take my Auth ...
0
votes
0answers
14 views

Inconsistent Extension Behavior on Google Chrome Installs

I have observed inconsistent behavior using the Web Developer extension (Chris Pederick) in Google Chrome on these different machines: My PC running Windows 7 Home Premium 64-bit A VirturalBox ...
2
votes
3answers
62 views

Intercept URL before unload with javascript or jquery

I'm writing a simple chrome plugin that intercept the new URL before the page unload and if it contains a specific string I want to do some actions and invalidate the redirect! I have no idea how to ...
0
votes
1answer
19 views

How to launch a Chrome Extension popup from a background thread?

I want to write a Chrome Extension that will be monitoring for URI link clicks, and when it encounters that it is to launch its popup. I understand that the monitoring will be done in the background ...

1 2 3 4 5 108