0
votes
0answers
8 views

chrome.input undefined in latest Chrome Browser (26)

Referring to documentation and sample code found here: http://developer.chrome.com/extensions/input.ime.html I am trying to install the sample extension/code to test chrome.input.ime It seems that ...
-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 ...
0
votes
0answers
44 views

Connecting Google APIs to Chrome extension

I'm sure this is really obvious and easy to do, but I can't seem to find any information on how to do it. So I have a chrome extension that does some stuff and gathers some data using javascript. ...
1
vote
0answers
65 views

Chrome 26: ContentScript doesnt receive response callback from evenPage after an extension upgrade

We started getting this issue only after updating to Chrome 26.0.1410.43. On normal circumstances everything seems to work fine. Content script sending message to event page using ...
0
votes
2answers
228 views

Javascript throwing : Refused to execute inline event handler because it violates the following Content Security Policy directive: "script-src 'self'

I'm newbie in google chrome extention delveopment. I'm trying to develop a simple extension and i keep getting the error above. my manifest: { "name": "set my favourties", "description" : "just ...
0
votes
1answer
31 views

Buidling an Extension to Trigger an onClick Action in the website?

I'm new to google chrome extensions, but I'm quite familiar with HTML and some javascript. My main area of expertise is Objective-C (but that's a different area). I wanted to build a chrome extension ...
0
votes
1answer
72 views

How do I find the Google's OAuth 2.0 client-secret-key for developing chrome-extensions?

I see only the following details in https://code.google.com/apis/console/b/0/#project:xxxxx:access Client ID for installed applications Client ID: 477522346600.apps.googleusercontent.com ...
0
votes
1answer
220 views

google chrome extension jquery not loaded

In the following google chrome extension file why do i cannot use a jquery script inside myscript.js file,Is jquery not loaded inside myscript.js file, what changes should be done in manifest file to ...
-1
votes
1answer
68 views

Am I legaly allowed to distribute a browser extension which modify/use Google SERPs? [closed]

There are many browser extensions, such as AdBlock, which are modify the content of a web page. Extensions in Chrome and other browsers are made for that. But according to intellectual property laws ...
2
votes
1answer
89 views

Chrome Extension background scripts aren't being loaded

My chrome extension background script is not being loaded. I followed Googles guide for them but still nothing. I'm not sure if there is another way to check but it isn't in Inspect Element and what ...
0
votes
1answer
93 views

Chrome extension to search a website?

I'm trying to create a google chrome extension (I'm almost a newb at programming, although I understand the basics, somewhat) that will search a video streaming site for the title that you enter. The ...
2
votes
0answers
72 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 ...
0
votes
2answers
66 views

Use Chrome Extension to Modify Google Search Result Page

I wanna make a Chrome extension to modify Google search result page. I know I can use content script to do this because it has the ability to do this. But unfortunately it fails. I wrote the code ...
0
votes
1answer
267 views

Connecting MySQL Database with Google Chrome Extension?

Is it possible to do this? I'm familiar with MySQL when it comes to webapps, but I'm learning how to create google chrome extension, and I'd like to somehow connect to my database from existing web ...
0
votes
1answer
110 views

Chrome Extension - Execute simple javascript from popup

I've created a simple page which uses a JavaScript file and the onClick method to display different div tags. I have a much more complex program which signs a user in using ajax, it works fine in a ...
0
votes
0answers
18 views

Right Click Options - Extension

By researching similar questions, ive found that the google extensions support page: http://developer.chrome.com/extensions/contextMenus.html But im still confused as to how I would make the context ...
0
votes
1answer
50 views

Javascript Google Chrome Extension, Looking For Domain Name, Not APP ID

I tried to get the domain name using alert(document.domain); But i'm not getting the right domain when I have the app installed on my chrome extension tool bar and test it out in a site, I keep ...
0
votes
1answer
122 views

javascript google chrome extension getting domain name

I tried to get the domain name using alert(document.domain); But i'm not getting the right domain when I test it out in a site, I get "hiecjmnbaldlmopbbkifcelmaaalcfib" this weird output. I have ...
2
votes
1answer
60 views

Chrome extension options.js notify content_script.js of settings change

What is the proper way to notify my content_script.js of a settings change? When I write my setting to localStorage I want to do a sendMessage/sendRequest to the content script so it can apply them ...
0
votes
1answer
86 views

Google Chrome: How to determine which window has generated WebRequest?

I have wrote chome extension, that processing all requests in the browser: manifest.json: { "name": "MyExtension", "version": "0.1", "description": "All requests are under control!", ...
0
votes
1answer
131 views

call chrome extension function from localhost

I have the following question. I've written chrome extension and its loaded to browser. Now I want to call one JavaScript function from any page outside the extension scripts (for example: call from ...
0
votes
1answer
108 views

Google Chrome Extension - How to generate a browser action without clicking?

I am developing a chrome extension. I found the fact that we have to click on the "icon" to generate a browser action tedious. Is there a way for us to call a function ( using javascript ) that ...
0
votes
1answer
66 views

Key binding on a flash page

I would like to know if the following is possible - I'm having trouble finding information regarding my question on the web. I was looking into creating a Google Chrome extension to work with a ...
0
votes
1answer
112 views

google chrome extension for manipulating browsing history

I'm thinking of developing a Google Chrome extension for the first time; no previous experience. The extension I have in mind must be able to look at a user's browsing history and provide the URL of ...
0
votes
0answers
13 views

clicking chrome extension through outside event

I have made an extension that possess other extensions like(adblockplus,httpseverywhere,wot). I want when i click button(wot written on it) , wot popup screen is automatically opened. Wot is separate ...
0
votes
1answer
145 views

Chrome Extension manifest error

I got following error Manifest is not valid JSON. Line: 5, column: 25, Syntax error. My manifest.json file { "name":"webrun", "manifest_version":0.5.1, "description":"Let code run in ...
0
votes
2answers
53 views

Chrome Extensions - html not defined

So, I'm trying to run a jQuery content script in a Chrome Extension. Simple enough, right? I can do: $("#header").hide(); Just fine (if an element has the id "header"), but as soon as I try: ...
0
votes
0answers
37 views

How can I inject HTML to the Google Search Homepage (ie google.com) using a Chrome extension? [closed]

Is it even possible to inject html onto the google search homepage?
1
vote
3answers
589 views

Saving data in localStorage for a GoogleChrome extension options panel and accessing the data

I'm making a extension for Google Chrome, the extension deletes all browsing data when the user clicks it, the extension works fine but now im trying to add a options panel where the user can choose ...
2
votes
1answer
234 views

GoogleChrome extension that deletes browsing history with one click from an icon

Im trying to make a google chrome extension that deletes all browsing history with one click on a icon located next to the url bar, this is my first extension on google chrome, i've made others for ...
0
votes
0answers
53 views

Finding the currently selected Google Reader item's id with Javascript

I'm working on an Google Chrome extension for Google Reader and it would be really beneficial to get the current post's 'google item ID' in Javascript. Thanks to mihai, I learned of this endpoint to ...
0
votes
0answers
25 views

Show the “Inspect Elements” window from a Chrome Extension [duplicate]

Possible Duplicate: Can I programmatically open the devtools from a Google Chrome extension? I want to provide a button in my Google Chrome extension to open the "Inspect Elements" window ...
0
votes
1answer
89 views

Google Chrome. Removing items form context menu

Is that possible: remove some context's elements? I dont want remove core items, but if i will able to remove or disable some things which added by extensions, it will be nice.
1
vote
3answers
1k views

Google chrome allow/deny prompt for using device's webcam with google chrome apps

At the moment google chrome provides me with security for using my device webcam, with a prompt '.. wants to use your camera' allow/deny. each time I load a page i get this option. I'm trying use the ...
2
votes
1answer
708 views

Open a Chrome app within a tab

This issue started with version 23 of Google Chrome. My Chrome app opens a tab to display its UI when the launched event fires. chrome.app.runtime.onLaunched.addListener(function() { ...
0
votes
1answer
40 views

Is there some way to store information for Google Chrome extensions in on google servers?

Now I save settings in localStorage, but when the same user open browser on another computer and login in google she get extensions, but don't get extensions settings, which was made before on first ...
2
votes
1answer
253 views

Google Chrome Extension - Programmatically Open Popup

When you make a Google Chrome Extension you can choose to have a "Default_Popup", is there any way to programmatically open the popup?
0
votes
2answers
88 views

[CRX]: didn't allow my js file in the extension

This is my application code: The manifest.json file: { "name": "YouTradeFx Debugger", "version": "1.0", "manifest_version": 2, "description": "This appliction allow YoutradeFX R&D team to ...
3
votes
1answer
152 views

CSS margin-left is breaking in Chrome Extension

My situation is extremely confusing, and I haven't the slightest clue what's going on. I made a Firefox add-on to redesign a website using jQuery and CSS. When I tried to migrate the addon to Chrome ...
0
votes
0answers
59 views

Modifying DOM with chrome extensions

I've read that chrome extensions have separate DOMs that each extension refers to, which is kept track through a hash table. I've also read that when DOM methods are called, such as appendChild(), ...
2
votes
2answers
140 views

Is there anyway to install an extention without visiting to google app store?

Is there anyway to install an extention without visiting to google app store? For example I want visitors, can install my extention just one clicking a facebook ad or a banner? Is it possible? I ...
-1
votes
1answer
125 views

Browser add-ons that modify HTML source (e.g. Google SERP page) : are they legal? [closed]

I'm impressed by the Wajam browser add-on that alterates Google SERP replacing AdWords with feeds from Facebook, Twitter and Google+ (screenshot with it in action: http://o7.no/gDXQbU). I'm planning ...
0
votes
0answers
65 views

Display information of a Google Doc as the HTML of a Chrome Extension

I want to create a Chrome extension that display the content of a Google Doc (a doc or spreadsheet) on the HTML "popup.html". when clicked on the extension in the bar. Is there any tutorial, ...
0
votes
0answers
119 views

Google Calendar API with OAuth 1.0 in Chrome Extension

I'm having a problem POSTing to Google Calendar API v2 using json. I'm currently building a Chrome Extension, and I need access to Google Calendar API as well. I have looked around and it seems that ...
-1
votes
1answer
112 views

Javascript popup Google Chrome Extention

Can I, and some references in case, make a google chrome extension that is basically a javascript popup. What I'm doing, is a share popup, and I currently have it saved as a bookmark like this: ...
0
votes
1answer
107 views

Playing a sound file when the pop up is closed (Google extensions)

I am developing a Google extension to play a set of songs. The extension has a pop-up to do volume-control. I use jPlayer to play songs. I am facing two problems: If the pop-up is closed, the ...
0
votes
1answer
55 views

Add A java Script file to browser Using Google extension? [closed]

How can I Add A java Script file to browser Using a Google extension I Need To Add A CSS To Facebook Using JavaScript And CSS And necessary Files.
3
votes
2answers
230 views

Chrome Extension that saves every POST data

I need to make an extension that saves every post data. I searched and found out that I need a background.js file that will do it... What I want to know, is how to "grab" post data when it's being ...
0
votes
0answers
154 views

Recording/playback of user actions in Chrome

We want to record user actions on a Chrome web page and later play back those actions from within Chrome page. The browser user must have minimal involvement. That is, the recording is automatic with ...
1
vote
1answer
167 views

Tutorials for local storage?

I am looking for places to learn how to use local storage in chrome extensions. More specifically: I want to use options and local storage of variables to run different css content scripts depending ...

1 2 3