This tag is dedicated to questions about extension development for the Google Chrome web browser.
0
votes
1answer
19 views
Chrome extension: managing multiple html pages in an extension
I want to have several html files in my extension so I can open each of them according to some conditions or events. Say I want a.html to be opened when the user chooses an option on the context menu.
...
0
votes
1answer
52 views
Can the code in a .crx chrome app have write access to the files within itself (the crx)?
I have a crx that has a number of files that I want to be able to change over time. For example, it might have this structure:
index.html
js/code.js
images/someimage.png
I want to be able to use ...
0
votes
1answer
27 views
Need a chome mobile to auto reload a tab/page
I have a google spreadsheet that is accessed via the web using an Android tablet. The android tablet uses Chrome, the mobile version obviously. The desktop version of Chrome has an extension for auto ...
-1
votes
4answers
47 views
How to use jQuery in chrome-extension to open a link?
I build my first Chrome Extensions with code and file snippets below.
manifest.json
{
"name": "Test",
"version": "0.1",
"manifest_version": 2,
"description": "First try",
"browser_action": {
...
0
votes
1answer
19 views
How to replace chrome.tabs.onSelectionChanged deprecated method?
I need to get data from the tab the user is leaving (switching on other tab or going on other program).
But chrome.tabs seems not providing an event allowing that..
Before there was apparently ...
0
votes
1answer
42 views
Chrome Extension: Insert a clickable image using a content script
I know hat it is possible, but I am not quite sure how to do it the 'right' way, as to ensure there are no conflicts.
I came across this question: Cannot call functions to content scripts by ...
4
votes
0answers
69 views
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 ...
0
votes
1answer
19 views
onClick function - automatically copies data from spreadsheets' static field
I'd be very glad for help with some ideas for code of extension that, on pressing on the icon in chrome, automatically copies a text from static field in spreadsheet, like this:
...
0
votes
1answer
45 views
Windows Installer for chrome extension using NSIS
I have my chrome extension for my website, I want to make a windows installer for it. I used NSIS but it just copied the files and it does not appear in the extensions list. I have seen earlier a ...
0
votes
0answers
11 views
Chrome Extension: How to structure extension to have a producer (downloads data) and consumers content pages
I am very new to Chrome extensions and I have still to grasped the subtleties of the various types of pages that are available.
First of all, this extension is part of a research project, so it ...
0
votes
1answer
51 views
setTimeOut scope in a Chrome extension
I have a notification functionality in my chrome extension which is managed by a background page (background.html)
This page calls the setNotificationDelay() function which is basically a deletion of ...
1
vote
2answers
52 views
Chrome extension tab.url undefined
I'm using a chrome extension with a button in the popup.html that opens a new tab. The destination URL of the new tab holds the URL of the current (original) tab as a parameter.
For instance: when ...
0
votes
0answers
23 views
how to interact between google-chrome extension files
How can i call function from backgroundPage.js into action page popupPage.js
This is my code
popupPage.js
<html>
<head>
<script type="text/javascript" ...
0
votes
1answer
16 views
Messaging between page and content script in chrome extension?
I am writing a chrome extension which injects codes below to opened page:
s = document.createElement "script"
s.src = "//example.com/my.js"
(document.head or document.documentElement).appendChild s
...
0
votes
3answers
61 views
Call a function from within the script from the html page with an extension
I have a script (For the purposes of this question: script.js) that is injected into every page (along with jquery.js).
script.js is supposed to add an extra element(elem) to the page, which when ...
1
vote
1answer
66 views
Chrome extension: open link in new tab?
In my Stackoverflow foler I have stackoverflow.ico and 2 bellow files. When imported it to Chrome, it show the icon in adress bar but when I click on it, chrome dont open any new tab. What is my ...
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, ...
0
votes
0answers
19 views
Automatically getting permission to “file:///” urls
Has anyone gotten any luck with getting permissions to inject contentscripts into a "file:///" url without having the person having to go to the chrome::/extensions window and manually toggling it?
...
0
votes
1answer
53 views
Using background.js variables in chrome.tabs.executeScript
With chrome.tabs.executeScript, how can I use a variable from background.js in the inserted content script? I mean something like this:
(...)
var identificador = target.selectionText;
...
0
votes
1answer
34 views
Making Notifier without Interval Time (with events)
I made a notifier extension which checks an url like every 2-5 sec with setInterval.
Is there away to make a notifier without setInterval? Like an event which only fires if there's a change in the url ...
1
vote
1answer
31 views
Access cookies with a Firefox Addon content script?
I am trying to translate an Addon from Chrome that someone else created. It has a content script that has chrome.cookies.get in it. I can't find a suitable way to fix this for Firefox. Is there any ...
0
votes
1answer
34 views
chrome.extension.onMessage.addListener blocks chrome.runtime.onInstalled.addListener
Adding an onMessage-listener prevents my onInstalled-listener from triggering. Why?
This is my code:
manifest.json
{
"name": "BUGTESTER",
"description": "Hmmmmm...",
"version": "0.1",
...
-1
votes
1answer
30 views
Creating A Faux Currency Chrome Extension [closed]
Concept: So in an effort to learn more about web programming, I am trying to make a google chrome extension for my friends and myself which would display the amount of an imaginary currency we all ...
0
votes
1answer
27 views
Why is this extension not working offline? (code included)
I created an extension (see code below) and I added it to google chrome via "load unpacked extension". I then opened it and used it before shutting down the web server (it's an internal server). When ...
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. ...
1
vote
2answers
93 views
Edit and search an URL with JS
I'm trying to make an easy google chrome extension that gets a string from a textbox and adds it to an URL (ie "https://www.google.com/search?q=") and then google the URL+ input string.
How should i ...
0
votes
2answers
31 views
Access to non-sandboxed disk in Chrome Native Client
Chrome Native Client provides File IO API to access sandboxed local disk. But is it possible to access non-sandboxed disk, and if yes, how?
0
votes
1answer
21 views
Chrome extension API documentation: how callbacks are called?
In chrome API for extensions lots of methods take "callback" argument. But for majority of methods it's not documented when callbacks are called. For example, chrome.tabs.remove takes callback that ...
0
votes
0answers
24 views
chorme extension crash with “Could not execute chrome hidden method: dispatchOnLoad”
my extension always crash when i close chrome.
Log:
....
[4686:519:0510/175611:VERBOSE1:page_load_histograms.cc(878)] PLT: 4609ms http://www.weibo.com/miser?wvr=5&
...
0
votes
1answer
63 views
Using jQuery in Google Chrome extension popup.html
I have a working Google Chrome extension, which I'm attempting to extend with an additional feature.
I've amended the "popup.html" to include external references to jQuery, which are:
<script ...
0
votes
1answer
36 views
How to distinguish pc from mac in a Chrome Extension?
I think everything is in the title: How to distinguish pc from mac in a Chrome Extension?
I would like to do this without Jquery. If they are multiple solutions, which one is the best practice?
-1
votes
0answers
31 views
Develop chrome extension for capturing any part of web page without losing styles & formatting
i am developing a chrome extension to clip a web page content(not in image format).
with possible ways i have tried with pageCapture chrome API in MHTML standard format.
...
0
votes
0answers
28 views
Chrome: message content-script on runtime.onInstalled
I'm the maker of an addon called BeautifyTumblr which changes the apperance of Tumblr.
I wish for my Chrome extension to automatically detect when it has been updated and display changelog to the ...
0
votes
0answers
65 views
Facebook window.fbAsyncInit not firing in Chrome Extension
I want to integrate my Chrome extension with Facebook but I can't make the fbAsyncInit to execute.
This is what I have on the html of my extension (editPage.html):
<body>
<div ...
1
vote
0answers
54 views
Injecting content scripts and requesting cross-origin permissions
I'm curious if the following scenario is a bug in Chrome, working as expected, or developer error.
So, I have an extension. In its manifest.json I request cross-origin permissions for two sites:
...
0
votes
2answers
51 views
JS Alerts from a popup extension in google chrome
i've made my very first google chrome extension. i've found out i can't show a javascript alert from the extension popup. Is there a way i can enable the extension to show it? or is there better way ...
0
votes
0answers
20 views
How do you remove the toolbar button when when developing Chrome extensions?
This is what I currently have in my .json:
"browser_action":{
"default_icon": "icon.png",
"default_popup": "popup.html"
},
When I remove the "icon.png",
"browser_action":{
...
0
votes
0answers
14 views
Chrome extension: advertisements pretends to be the current tab
I'm writing a chrome extension in which I occasionally refer to the current tab.
It's working fine except for I find from time to time that some advertisement was identified as the current tab. It's ...
0
votes
1answer
29 views
Chrome extension: Get charset of current page
How can I tell within the background code with which charset the current page is defined.
More specifically: I'm using context menu and I want to know whether the selected text is encoded in utf-8 or ...
0
votes
0answers
9 views
Google Chrome Sync behind a firewall [migrated]
I have some issue with Google Chrome Sync.
The firewall in my company is configured with some too stringent rules. When I am connected through this network my synchronization fails. In other networks ...
0
votes
1answer
36 views
Getting a content script to append image on page load
I've just start out learning how to make extensions for google chrome. I have a very basic understanding so far, so I wanted to try something small.
Right now I am trying to get an image to append ...
0
votes
0answers
49 views
Grab file from chrome webRequest onBeforeRequest
I am trying to fetch the files that want to be uploaded via POST.
Unfortunately i only get the requestBody as FormData giving me huge headaches accessing the file. I only get the filename as ...
0
votes
1answer
34 views
Call a javascript function from popup page - chrome extension
I'm trying to build a Google chrome extension that according to parameters given in a form - on the popup page, manipulate the URL.
What is the way to call a javascript function and pass it ...
0
votes
1answer
59 views
Google Chrome Extension and NPAPI/FireBreath embed webpages
I am developing a project where i intend to open multiple webpages in the same one but not using <iframe>. I have tried in the past using <iframes> but i usually end up with the browser UI ...
2
votes
1answer
45 views
Trigger a JavaScript action when shift-double clicking
I am moving from Safari to Chrome and desperately miss the Safari zoom behavior. There's an extension dblclickzoomin that makes things zoom like safari whenever you doubleclick. However, this is ...
0
votes
1answer
21 views
jquery event in Tabs
I'm creating a chrome extension, adding a "tab" to a website:
(function () {
$(".tabs").append('<li><a data-toggle="tab" href="#MyNewTab" onclick="MyExtClick()">NEW ...
1
vote
2answers
37 views
Is it possible to hide extension resources in the Chrome web inspector network tab?
When I'm viewing the downloaded resources for a page in the Chrome web inspector, I also see the HTML/JS/CSS requested by certain extensions.
In the example above, indicator.html, indicator.js and ...
0
votes
0answers
24 views
Typekit font in a chrome extension [duplicate]
How do I use Typekit fonts in a chrome extension. A similar question Google Chrome Extensions with Typekit Fonts .
Any ideas?
0
votes
0answers
15 views
Chrome extension fetch existing desktop notification
I tested the following code in background page script. The notification can be shown. But cannot be fetched with chrome.extension.getViews. Could anyone tell me how to fetch notification?
...
0
votes
0answers
23 views
How to draw graphics on any section of desktop with Chrome Extensions?
I was told that this is possible with NPAPI plugins, but not know how to take the first step. Will there be any method without having conocimiendo of NPAPI or a plugin already made to draw a graphic?
...




