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

learn more… | top users | synonyms

0
votes
0answers
21 views

get informed of loading event of chrome tab

I am developing a chrome extension, and I want to be informed of the loading event of chrome tab.(The loading status icon appears on Chrome tab) Now I have tried two methods: 1. chrome.tab.onupdate ...
0
votes
0answers
15 views

Using Typekit or Google Fonts in Chrome Extension Content Script

I'm trying to use an external font (either Typekit or Google Web Fonts) in my Chrome extension content script. The content script is loaded into the context of the page that is being viewed. ...
0
votes
0answers
21 views

Proxy for one specific script (extension PAC file?)

I'd like to write have a proxy for one specific script, so that if browser will request this script, it will ship some script from other source pointed by me. Is it possible? It would be also nice to ...
0
votes
1answer
43 views

Problems with CSP in the manifest.json file

the script of my first GC extension doesn't work when loaded as .crx . i've checked the debugging section and this is my error: Refused to execute inline event handler because it violates the ...
0
votes
2answers
15 views

Refer static images or fonts in stylesheet when developing extensions for Chrome

I am creating a Google Chrome extension. And I want to use background-image attribute for some of the elements that I define through CSS. But I am not sure how the url() should be given. I tried ...
-1
votes
0answers
26 views

Google Chrome extensions - Rightclick context menu notes [closed]

Good afternoon. I have a problem. I need help to create a plugin to your browser. The program will have a database (html, txt) - any format And when you select the phrase, so that in the context ...
-1
votes
1answer
43 views

Unit Testing Chrome Extensions?

What is the best way to unit test a Google Chrome extension? I need to unit test various JavaScript functions and content-scripts on the websites they were designed for, as well as automate user ...
0
votes
1answer
54 views

Disable source view in chrome browser

Can I have access to such browser options like disabling ContextMenu Items and disable hot-keys (Ctrl-U).How to configure browser that the View Source option was disabled?
0
votes
0answers
15 views

Chrome extension: Variables scope

The title is very general, I don't have a clue what the problem is so I couldn't be more specific. Consider the following extension: manifest.json: { "name": "My extension", "version": "1.1", ...
0
votes
0answers
30 views

Chrome Extension content_script on Twitter pages losing events when changing URL

I'm having a go a little Chrome extension to add a button to each of the "following" users on the Following page on twitter.com. So far, I've got the content script working enough to add the button ...
0
votes
1answer
25 views

How to generate Chrome Extension's popup body based on periodically fetched data?

I am programming a Chrome Extension that will be fetching JSON data every minute and update the popup's html body (accessible after clicking the icon) based on the results. This is my background.js: ...
0
votes
1answer
23 views

Chrome developer tools: View the `Console` tab and/or the `Sources` tab in a separate window?

Chrome developer tools: Is there a way to view the Console tab and/or the Sources tab in a separate window? I often want to look at both of these simultaneously. Pressing Esc when on the Sources tab ...
0
votes
0answers
21 views

Chrome Extension chrome.tabs.captureVisibleTab How do I get the snapshot? VB.NET

I am building a Chrome Extension. When a tab is updated, I want to take a snapshot of what's in the tab. Here is what I have: chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab){ ...
0
votes
1answer
31 views

How do I customize the title bar of a popup in a chrome extension?

How do i style the title bar of a popup in a chrome extension? I notice this being done by Chat for Chrome. (Note: the screenshot for that one is outdated) I got as far as opening a popup without the ...
0
votes
0answers
15 views

Is there a way to disable chrome_url_override via a Chrome Extension?

Here's the background on my question: I have a chrome extension that overrides the user's new tab with the extension. It is using the chrome_url_overrides permission to override the newtab with my ...
0
votes
2answers
36 views

Multiple Tab Chrome Extension Issue

I've created a basic extension that searches Google if the URL/HTML content fulfill certain requirements. It works for the most part, but fails miserably when there are multiple instances of the ...
0
votes
1answer
28 views

Extensions installed on chrome browser missing when chrome browser instance is opened with Selenium chromDriver

i have a peculiar problem here. When i open chromeBrowser via chromeDriver the extensions that were previosuly installed are missing.Also the apps extension is getting deleted from extensions ...
0
votes
1answer
17 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
48 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
25 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
39 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
18 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
40 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 ...
1
vote
0answers
40 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 ...
0
votes
1answer
18 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
43 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
10 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
45 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
51 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
59 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
58 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
1answer
51 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
15 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
49 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
31 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
29 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
24 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
17 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
92 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
20 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
22 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
55 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
28 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
27 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 ...

1 2 3 4 5 108