You cannot post messages because only members can post, and you are not currently a member.
Description:
This group is for Chromium or Google Chrome extension developers.
First posts are moderated to prevent spam.
Please don't promote your extensions here.
Consider asking your question on Stack Overflow instead, using the [google-chrome-extension] tag.
|
|
|
Stack Overflow developer support
|
| |
Hey folks, Stack Overflow (stackoverflow.com) is now an official support channel for chrome extension developers. Some of Stack Overflow's benefits include a large and active user base, the promotion of answers in search results, and structured markup for easily writing code snippets. Already we've been monitoring the [google-chrome-extension] tag in Stack... more »
|
|
Announcing the activeTab permission in Chrome 26 stable!
|
| |
Extension developers,
Does your extension need <all_urls>?
Chrome 26, now stable, includes the new activeTab permission, which you may be able to use instead. The best part? It doesn’t require a warning message during installation!
The activeTab permission gives an extension temporary access to the... more »
|
|
How to read file input's file content from POST request via WebRequest API?
|
| |
Hi,
we are trying to block and read the content of (a) file(s) that are
uploaded via form with file input using the WebRequest API and
onBeforeRequest. We cannot get the file content, but only its file
name using requestBody.formData. In our tests we always get formData
which seems not to include file content readable to us. raw that would... more »
|
|
manifest version 2 timeline
|
| |
Just wondering if there's been any shift in the manifest version 1 support schedule published at [link] Eg, under "April 2013", it states that "The Web Store will remove manifest version 1 items from the wall, search results, and category pages."... more »
|
|
Stats down again?
|
| |
The ratings (total count and average rating) haven't been updating for the
past 10 days despite new ratings and comments showing up. What's going on?
...
|
|
trying to configure bitcoin on extension
|
| |
Hi guys, I am trying to configure a demo bitcoin payment button in an extension. My current permissions are: "permissions": [ "tabs", "<all_urls>" ], I am trying to configure it in a popup options.html opened from background.js by chrome.tabs.create({url: 'options.html'}); I just added the demo code here<[link]>,... more »
|
|
Issue with special characters wirh chrome Beta (ok with Canary)
|
| |
Hi all, I'm having an issue with my chrome extension on chrome 27, when displaying text that comes from a NPAPI plugin and contains special characters. It appears that this issue is not reproducible on chrome 28. (see attached screenshots) Is there any chance that this will be fixed by the time 27 reaches stable... more »
|
|
xmlhttprequest not redirected
|
| |
Hi All. In my extension i'm trying to redirect some wrong xmlhttprequests to another server but faced some strange issues. I'm filtering this requests in webRequest.onBeforeRequest listener like this(sample code): chrome.webRequest.onBeforeRequ est.addListener(function (details) { if (details.type == 'xmlhttprequest') {... more »
|
|
moving from permissions to optional_permission: how to handle content_scripts?
|
| |
Hi, My extension has an optional feature that interacts with the user's gmail tab. We don't want to mention mail.google.com domains at all in the permission confirmation that the user sees when first installing the extension. So I moved that entry out of the manifest's permissions block and into the optional_permissions block. We also needed to use a content... more »
|
|
|