This tag is dedicated to questions about extension development for the Google Chrome web browser.
5
votes
0answers
972 views
Chrome extension: send postMessage from iframe to parent window
I am developing Chrome extension in which I have created iframe. I am trying to send a message with postMessage and getting a message about protocol mismatching like this:
Unsafe JavaScript ...
4
votes
0answers
659 views
Chrome extension memory leak in chrome.extension.sendMessage()?
I'm seeing fairly massive memory leaks in long-lived pages using Chrome's chrome.extension.sendMessage()
After sending ~200k events from the Content-Script to the Background-Page as a test, ...
4
votes
0answers
109 views
Re-establishing tab identity in a chrome extension after browser restart
My Chrome extension saves some data in localStorage, and it needs to do this on a per-tab basis. Using the tab id I get from the API allows me to save the data in a way I need. Unfortunately, if the ...
3
votes
0answers
144 views
Do source maps work for Chrome extensions?
I'm using the Closure compiler to create a Chrome extension and I'd like to get source maps to work for debugging. I can get source maps to work just fine by pointing the browser directly to a page ...
3
votes
0answers
203 views
Customized protocol handler in chrome
I would like to open my win 8 app through link in Chrome.
Unfortunately, i can see the link but clicking on it do nothing.
I read about navigator.registerProtocolHandler and made something for me.
...
3
votes
0answers
155 views
How to reliably give a window focus?
I need to give a Chrome window focus over all other running applications. Javascript's window.focus() only gives focus over other windows of the same browser.
When my Chrome extension executes:
...
3
votes
0answers
479 views
Chrome extension throwing error in console
My content script sends a message to background.js. In the callback handler for response, I had the last line as "alert(alrt_msg)". Upon executing code, I get the alert box, but after clicking "OK", ...
3
votes
0answers
270 views
Google Chrome Remote Debugging - Adding break points
I am trying to add breakpoints automatically using chrome extension
First I am searching for specific content in the specific scriptId then I add a breakpoint on the same location in the search ...
2
votes
0answers
37 views
Issues with using an iframe to show chrome extension UI on a web page?
I am developing a chrome extension that is meant to work on all web pages. As part of its functionality, it needs to show a UI on any given page.
Currently, to do this, I append a div (containing ...
2
votes
0answers
56 views
+50
Search request in Chrome omnibox from an extension
How can I execute a search request in Chrome's omnibox from an extension ?
I'm looking for something similar to:
chrome.tabs.create({
'url': 'some/relative/or/absolute/url'
});
where the url ...
2
votes
0answers
19 views
bookmarks bar click event listener chrome extension
i am working on a chrome extension that needs an event listener on the bookmarks bar buttons so that i could do whatever i want with the bookmark that was clicked !
i've looked up the bookmarks api ...
2
votes
0answers
44 views
How do you integrate Universal Analytics in to Chrome Extensions?
The chrome extension guide has a tutorial for the old analytics install: https://developer.chrome.com/extensions/tut_analytics.html
The instructions just say to link to the https version and update ...
2
votes
0answers
47 views
Can't use jQuery ($.Storage.get) in a Chrome extension
When I type in the Chrome console $.Storage.get('ui_s') it returns value "th_classic" from a certain website as it should.
But when I try to use it in my Chrome extension it returns an error with ...
2
votes
0answers
119 views
chrome.runtime.onConnect doesn't exist in chrome extension
I have the following code in a persistent background script (background.js):
chrome.runtime.onConnect.addListener(function(port) {
console.assert(port.name == "knockknock");
...
2
votes
0answers
93 views
Is it possible to increase chrome.bookmarks.MAX_WRITE_OPERATIONS_PER_HOUR?
I tried setting the property to a much higher value but it doesn't seem to work. Any idea how I should go about it? (It's for an extension which allows you to switch between multiple bookmark bars.)
...
2
votes
0answers
85 views
DOM's charset different from the displayed on screen
I'm facing a weird problem. The text inside the html has accents, e.g.:
<p>é</p>
It is displayed correctly in the screen (é), but the content inside the DOM instance does not accepts ...
2
votes
0answers
73 views
Duplicate a tab in Chrome without Reloading the Page?
Is there any way to completely duplicate the state of a current tab in Google Chrome? I want an exact copy of the current state of the page without having to reload the page in another tab.
An ...
2
votes
0answers
107 views
Adding window.bluetooth object to Chrome
I want to demo a web page being used to interact with a physical object in the same proximity as a web-enabled device (Mac/Windows/Linux laptop). In order to do this, I want to create my own ...
2
votes
0answers
38 views
Newly updated extensions cannot install
FOUND AN ANSWER Developer Chrome extension: Package is invalid. Details: "Could not uzip extension'
A recent update to Chrome Web Store Developer Dashboard has broken some features. ...
2
votes
0answers
45 views
Permissions aren't being loaded for Chrome Extensions
Just started my first chrome extension and I'm trying to use the chrome.bookmarks.getChildren() method. I am getting an error saying
Uncaught Error: You do not have permission to use ...
2
votes
0answers
48 views
After hijacking OnAuthRequired event on Chrome (via extension), how do I return back to the browser to seek auth from user?
So I am trying to auto-login a certain site, by doing the following
chrome.webRequest.onAuthRequired.addListener(function(){..});
But suppose the auth fails, how do I escape out of the lambda and ...
2
votes
0answers
192 views
chrome extension popup HTML not updated by JavaScript, standalone HTML works
I am trying to Show a RSS feed in a Google Chrome extension's popup page. I am using jQuery and a RSS plugin for jQuery. The code works perfectly if I load the popup.html in a browser window. However, ...
2
votes
0answers
146 views
SOLVED: Create new tab from browserAction in Chrome
Update: Found a solution in another one; apparently I miscopied it before! This worked:
chrome.browserAction.onClicked.addListener(function(tab) {
chrome.tabs.create({'url': ...
2
votes
0answers
119 views
How to stop chrome.tabs.reload from resetting the extension icon?
i am writing an extension which sets the extension-icon to an "active" one for a specific tab, but if i reload this tab by chrome.tabs.reload(id), the icon changes back to the default one.
Little ...
2
votes
0answers
338 views
Close a Chrome extension popup by clicking the browser action icon again
I'm developing a Chrome extension and I wanted to know if it is possible to close a popup by simply clicking again the icon that lets you open the popup: I tried anything but it looks like you must ...
2
votes
0answers
62 views
Gmail extension design requirements
Are there specific design requirements when creating a gmail extension such as Boomerang or Rapportive?
2
votes
0answers
159 views
Modifying Omnibox suggestion priority in Chrome Extension
I am writing a google chrome extension that will use the keyword "\\" as an Omnibox trigger. This is working well, and I am achieving most of the desired result, except that the priority of the ...
2
votes
0answers
93 views
Finding the origin (URL) of a dragged and dropped image/text on a cocoa application dock tile on 10.6.8
I have just started coding an application in cocoa on OSX 10.6.8. It is well underway mostly thanks to threads I have found here. For the subtle functionality I am about to explain I've looked ...
2
votes
0answers
220 views
Really get all cookies with chrome.cookies.getAll?
I'm developing a chrome extension and I need to get all cookies (at least in the current CookieStore). First pass, I use
chrome.cookies.getAll({}, function (cookies) {
...
2
votes
0answers
1k views
How chrome.storage.local.get sets a value?
var storage = chrome.storage.local;
var css = "old";
storage.set({'css': 'new'});
storage.get('css', function(items) {
if (items.css) {
css = items.css;
console.log(css);
}
});
...
2
votes
0answers
117 views
How to implement logging functionality in a chrome extension
I'm working on an extension and have a need for logging -- not as in console-based logging, but in the traditional sense of a logfile (the extension monitors for certain events and logs them to the ...
2
votes
0answers
1k views
how do i learn chrome.extension.sendRequest method?
I have tried to browse through the extension APIs and have searched google. I can find the information available for chrome.extension.sendMessage but its hard to find anything for the ...
2
votes
0answers
541 views
Chrome extension API webRequest doesn't work well on response
So I'm trying the Chrome API webRequest. Everything works fine on request, but on response, I got problems.
My testing is pretty straight forward:
function func(obj)
{
var ...
2
votes
0answers
358 views
Chrome extension: Default width for popup less than max width?
I'm relatively new to programming and am working on a Chrome extension with a popup. I don't know the content in the popup, nor do I know the users' preference (obviously). The popup should be able to ...
2
votes
0answers
498 views
My chrome extension doesn't show errors to console, but shows logs
I've encountered an issue that drives me completely nuts.
My chrome extension doesn't report any errors to Developer Tools console. BUT: it still writes logs, works generally well, and the ...
2
votes
0answers
133 views
Custom print preview in chrome extension
Im developing an Chrome Extension which need to customize the print preview dialog (to count pages, to realtime on/off images and font size changing).
Is there any way to insert javascript into ...
2
votes
0answers
285 views
GWT Chrome Extension with manifest_version: 2
Has any one been able to make a Chrome extension using GWT and manifest_version 2? I have sandboxed all the GWT generated files also (as suggested here) but it still does not work.
manifest.json
{
...
2
votes
0answers
75 views
Is there a way to enable or disable flags of chrome through custom chrome extension?
I am referring chrome://flags
What i am curious to know is that whether it is possible to enable or disable a particular flag of chrome through custom chrome extension?
For e.g.- I want to enable ...
2
votes
0answers
77 views
Replacement for chrome.Port prototype
My extension, sharkzapper was working in older versions of Google Chrome but stopped some time when Chrome 18 or 19 was released, due to my use of the chrome.Port.prototype property which no longer ...
2
votes
0answers
529 views
Chrome Extension contenteditable get and set caret position
Working with the DOM in a google extension
I am creating an Google Chrome extension where I need to insert a link into the gmail window. I am able to create a simple extension button in the top of ...
2
votes
0answers
225 views
chrome speed dial with hotkey
I can't find any speed dial addon for Chrome with hotkey's like in opera or speed dial's from firefox.
In Opera i press STRG + 1 and in the current tab my first speed dial page open's.
In Firefox ...
2
votes
0answers
180 views
Can I package an NPAPI plugin in a Chrome Web Store “hosted app?”
I have a web app that uses an NPAPI plugin. Is it possible to put one package on the Google Chrome Web Store that installs both the app (really a pointer to the hosted app) and the NPAPI plugin that ...
2
votes
0answers
232 views
How to send Gmail talk messages using Gmails built it method
I want to create a Google Chrome extension that, among other things, will modify the chat text based on what is inputed. I will add a button next to the video, call, and add people buttons below the ...
2
votes
0answers
274 views
Chrome extensions support copy image to clipboard?
I search in goggle and didn't find any answer.
The new clipboard API support copy image to clipboard by using document.exec command.
If yes, How can I copy image data url to clipboard as image?
I am ...
2
votes
0answers
768 views
Google Chrome Bookmarks API
I'm creating a Chrome Extension that can saves and retrieves bookmarks specific only to the user. Bookmarks are stored in the local disk in a form of a file. So I use the bookmarks API of Google ...
2
votes
0answers
437 views
Why doesn't my Chrome extension work on other computers?
I'm working on a Javascript-heavy (the only reason I mention this is because I think it may be part of the problem) Google Chrome extension that adds an icon to the Facebook header, and it works just ...
2
votes
0answers
164 views
Browser Extension: Prevent Web Site from Capturing Keyboard Shortcut
My employer uses an issue tracking software (which shall remain nameless) that captures CTRL + C and triggers a "Create a new ticket" workflow. I just want to use CTRL + C like normal, to copy text ...
2
votes
0answers
703 views
Getting 'Proxy authentication required' when doing XMLHttpRequest (cross-origin) on Chrome Extension background page script
Question
I am getting a Error 407 'Proxy authentication required' when doing a cross-origin XMLHttpRequest from the background page of my Google Chrome extension.
I have Chrome set to use a HTTP ...
1
vote
0answers
16 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 ...
1
vote
0answers
9 views
import statement in empythoned doesn't work in chrome extension
I am using javascript generated by Empythoned to create a chrome extension. Python import doesn't work in chrome extension where as it works in web application. Here is the demo.
Sample code:
Web ...


