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

learn more… | top users | synonyms

0
votes
0answers
12 views

Is the Window ID returned by Chrome Extension window creation a WinAPI hWnd?

I would like to write a tiny C program that makes window perist across browser navigation. I'm writing a Chrome Extension and would like a persistent window. The alwaysOnTop property of the window ...
0
votes
1answer
27 views

Simple Chrome extension doesn't always work…only when not debugging?

I have a very simple Chrome extension that has a popup with a single button. When you click the button, it creates a new tab, then changes the badge text in the tabs.create callback function. When I ...
0
votes
0answers
22 views

Get notified if an HTML attribute changes in a Chrome extension

Is there a way to get notified about changes in attributes of a specific HTML object? I've found this thread but it's is only about normal DOM in browsers, I want this for a Chrome extension. Edit: I ...
0
votes
2answers
30 views

Getting started with developing for Chrome

I have been asked by my friend to make an application for Chrome and it requires me to have context-sensitive menus as below: I have never really made anything for Chrome before and I have a few ...
0
votes
0answers
8 views

Chrome extension: context menu for video doesn't work

I'm trying to create a context menu item with "contexts":["video"] with no luck. The item just doesn't show up when I right-click on a video. So I tried to download this official example and I was ...
0
votes
0answers
11 views

Chrome extension: context menu OnClickData.pageUrl vs. tab.url

My use-case: When a user clicks on a context menu item, the extension should grab the url of the page on which the click happened and do something with it. Reading the docs I realized that there are ...
0
votes
0answers
15 views

call sendMessage without responseCallback

I send message from the popup window to a background process. The feedback signal is not necessary to me. Can I not call sendResponse. popup.js window.onload = function(){ ...
0
votes
0answers
14 views

Feasibility of grouping tabs in Chrome

I'd like to be able to group tabs in Chrome (on Windows Vista/7 primarily), as I can with Tab Mix Plus on Firefox, so that I only see one group in the tab list at one time. I don't seem to be the only ...
0
votes
0answers
20 views

chrome.cookies.get not finding cookie

I've been trying to fix this for a couple days and can't find anything online that works. When I test my chrome extension locally it works fine. When I publish it on the web store it works on my ...
0
votes
1answer
26 views

Chrome extension enable content script to access iframe

Question is simple: Is there any way to enable a content script (through executeScript()) to be able to access an iframe on the current webpage (say stackoverflow.com) that has the same origin of the ...
0
votes
1answer
11 views

Tumblr OAuth authorization “Missing or invalid oauth_verifier.” message solution for chrome extension

So I hade this problem with getting 400 from http://www.tumblr.com/oauth/authorize?oauth_token=xxx. I use this Google Chrome OAuth tutorial page and just copy the files from there. And it all worked ...
0
votes
0answers
9 views

Google Chrome Extension Load Content Script on all pages including “chrome://” pages and the “New Tab” page

I am building a Google Chrome Extension which uses some shortcut keys, set using a Content Script. The shortcuts work on all http:// and https:// pages, but I would like the keyboard shortcuts to also ...
0
votes
1answer
19 views

Chrome Extension Oddity with Tab API

I'm writing a Chrome Extension and am having some difficulty getting more than 5 tabs open. here is the source code. manifset.json { "manifest_version": 2, "name": "Test", "description": ...
0
votes
0answers
16 views

set focus on search textbox instead of address bar on google-chrome-extension

I've tried to create a simple google-chrome-extension for a custom new tab. I've used two files to do it: manifest.json: { "name": "focus", "version": "0.2", "chrome_url_overrides": { ...
0
votes
0answers
12 views

Get JSESSIONID from AJAX answer

In a chrome extension I want to make AJAX requests to http://www.keyserver.pgp.com. The thing is, the server answer with a JSESSIONID, and I have to handle it and join it to my future requests. I ...
2
votes
0answers
11 views

chrome extension: chrome.commands shortcut affecting incognito window, even though extension isn't enabled there

Chrome extension development: I am using the chrome.commands to specify certain global shortcuts. If I specify a shortcut that overrides a default browser shortcut (for which I have a good reason!), ...
2
votes
1answer
23 views

chrome.tabs.executeScript - how to make a script return a value?

I am injecting a script into a tab using chrome.tabs.executeScript. Its last parameters is a callback function that will be called with The result of the script in every injected frame. . How do I ...
0
votes
1answer
27 views

Generating crx file via PHP fails with: “Package is invalid: CRX_SIGNATURE_VERIFICATION_INITIALIZATION_FAILED”

I'm generating a crx file in PHP using phpseclib. When I try to install the crx into Chrome, I get the error: Package is invalid: 'CRX_SIGNATURE_VERIFICATION_INITIALIZATION_FAILED' Here's my code: ...
0
votes
1answer
13 views

How to insert HTML/JS into window (of type “panel”) created by chrome.windows.create?

I'm creating a window in a Chrome Extension using chrome.windows.create. It's of type panel, so it's not a regular browser window or tab, but a free-standing window floating above all others. Having ...
0
votes
1answer
22 views

Adding multiple event listeners to one link

I'm writing a Chrome Extension and am having some difficulty getting my event listeners to work correctly. manifset.json { "manifest_version": 2, "name": "Test", "description": "testing ...
0
votes
0answers
10 views

Sending email via chrome extension using chrome API \ GmailApp

Is there any way to send email via chrome extension using chrome API or GMailApp class? If the GmailApp option is possible, how do I add GmailApp class to my project? Is that action possible without ...
0
votes
0answers
10 views

Chrome inline extension on verified site throws error: No Chrome Web Store item link found

I have followed the deployment instruction of an inline installation of my extension on a site that I have verified. <link rel="chrome-webstore-item" ...
0
votes
1answer
29 views

When an extension is invoked, what runs first?

When an extension is invoked or started, what is the first thing that is run? Is there some default .js file that is loaded first? Is there something comparable to main() in the C world? It's not ...
0
votes
0answers
21 views

A issue when inject a javascript code that OVERRIDES the one existing in a DOM?

I have read this question Is it possible to inject a javascript code that OVERRIDES the one existing in a DOM? and the solution works well most of time, but sometimes, seems JavaScript code in page ...
-5
votes
0answers
19 views

How “Chat Undetected” extension works? [closed]

I'm curios to know how does "Chat Undetected" extension for Google chrome/Firefox works?
0
votes
0answers
19 views

automatic chrome extension installation

Our clients used to update our Google Chrome extension automatically (via https from webserver). They can't install and update our extension since this happened ...
-3
votes
1answer
33 views

How Can we make a small drop down type like it happens in pocket extension whne we save a page [closed]

I have started building an extension.I just wanted to know how to create a small banner or drop down. it happens in pocket extension for Google chrome and i found it a very good feature and wanted to ...
0
votes
2answers
37 views

Use cursor.continue() in a callback

I am trying to use cursor.continue() in chrome.tabs.update() callbacks. I always get the following error. DOM IDBDatabase Exception 0 Error: A request was placed against a transaction which is either ...
-1
votes
2answers
46 views

indexOf() not working anymore [closed]

I have a chrome extension with this code : function tabsUpdated(tabId, changeInfo, tab) { if(changeInfo.status != "complete") return; console.log(tab.url); //displays ...
0
votes
2answers
13 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 ...
2
votes
0answers
27 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 ...
0
votes
0answers
30 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
13 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
1answer
28 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 ...
0
votes
0answers
30 views

Chrome extensions: injecting jQueryUI dialog and updating its contents programmatically

Update: see bottom of post 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 ...
0
votes
0answers
7 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
votes
0answers
10 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
20 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
8 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 ...
1
vote
1answer
71 views

Userscript no longer runs on iframes, in Chrome 27

I have a chrome extension which consists of a Greasemonkey userscript that has been packaged up so that Chrome users don't have to bother with Tampermonkey. The page on which the script runs consists ...
1
vote
1answer
26 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 ...
0
votes
1answer
38 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
17 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 ...
1
vote
0answers
35 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 ...
3
votes
2answers
53 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}) } ...
-3
votes
1answer
27 views

How to modify an extension from the Chrome Web Store? [closed]

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
1answer
45 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
25 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
22 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 ...
1
vote
2answers
79 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? ...

1 2 3 4 5 109