0
votes
0answers
15 views

Chrome Content Script Get/Action Javascript Function Variable

For a Chrome content script I'd like to be able to get two variables from a Javascript function and action some code if the condition is true. There are several of these on the page I'm referring to: ...
0
votes
1answer
43 views

Bind function to image, or to anchor IF anchor's only child is img

I've run in to an issue in a chrome extension I'm writing where right clicking on an image fires off a function, however this function does not currently work if the img is wrapped in an anchor tag. ...
0
votes
0answers
20 views

jQuery to Chrome Extension [closed]

So I have this written http://jsfiddle.net/MBE4t/2/ and I would like to use it as a Chrome Extension. I've been playing around with Chr. Extensions for hours but no success. Can anyone help me how to ...
0
votes
1answer
36 views

Callback with window.setInterval

I am trying to return a some metadata found on a page in a google-chrome extension. The background.js makes a request to the website.js page for the metedata. The request is made right when the page ...
-1
votes
0answers
22 views

Create Chrome Extension Relationship

I want to save a data relationship between "lists" and "links" like on a database, "lists" would have and ID and I could catch all "links" (which have link name and url data). How can I do tha?
0
votes
0answers
13 views

Chrome Extension and Outlook Web Access style or content selectors

I'm trying to build very simple extension to inject java script into OWA. I managed to get everything to work in simplest case- my inject.js file looks like this: $(function() { alert("works!"); ...
1
vote
1answer
57 views

Keep google chrome extension ContentScripts working while javascript is blocked

I currently started fiddling with google chrome extensions. My extension currently does inject some javascript into every website, which creates a sidebar with some functions (which functions doesn't ...
0
votes
2answers
68 views

Get textbox value through button in popup

I am a newbie to chrome-extension/java script development and I am stuck at the following exercise. I created a popup with a button and a textbox. I wanted to pass the textbox value to an alert when ...
0
votes
0answers
31 views

Chrome Extension - permission problems

I'm building an extension. One of the parts of the extension is to display an output from a VOIP server, using Javascript. I'm using this one: ...
0
votes
0answers
63 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 ...
1
vote
2answers
101 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
vote
1answer
44 views

Chrome Extension: Unbind event listener added by script executed on the fly

I have a Chrome extension that will bind mousedown event listener on "body" when the browser action is clicked. And when the browser action is clicked again, it will unbind the mousedown event. But ...
2
votes
3answers
101 views

Intercept URL before unload with javascript or jquery

I'm writing a simple chrome plugin that intercept the new URL before the page unload and if it contains a specific string I want to do some actions and invalidate the redirect! I have no idea how to ...
0
votes
0answers
78 views

Pause a Chrome Extension. How?

In my Chrome Extension I'm building, I'm trying to pause an external js script(timer.js) Essentially the user clicks on it in a Popup when they press the Extension icon at the top right. And it will ...
-1
votes
4answers
64 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
35 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 ...
0
votes
1answer
103 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
25 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 ...
0
votes
1answer
40 views

Chrome extension transfer to manifest 2 - No ajax response

Hayush! Been trying to transfer my Chrome extension to manifest 2. Everything is working except for one script which calls an ajax. I have a variable that contains a JSON content which needs to be ...
0
votes
0answers
70 views

How to get cross-origin iframe content by Chrome extension?

I want to fetch images from cross-origin iframe (both main frame and iframe don't belong to me) and use my Chrome extension to analyze them. Apparently, I can't get the authority to access those ...
1
vote
2answers
49 views

How do I wait for a javascript function to return a response using Chrome.storage API?

I am trying to use the following code to set and get name value pairs in a Chrome Extension. if (!this.Chrome_getValue || (this.Chrome_getValue.toString && ...
0
votes
0answers
61 views

Intercept and read CSV file download in Chrome Extension

Is it possible for a Chrome extension to detect when a CSV file (or any other plain text file, e.g. txt) is downloaded within a website? I'm looking to intercept the response and read out the contents ...
0
votes
2answers
43 views

Store variable in Chrome Extension (domain 1), but I need it in remote domain (domain 2)

I'm developing a Chrome Extension. In the box extension I allow users to store a variable (an URL). Then, in the page when the script is active, I must get this value. Example Chrome Extension: ...
0
votes
1answer
46 views

wizard form chrome extension

Over the last days I have been trying to implement a wizard form by using jquery on chrome extension, but it seems to impossible (for me). I have tried to adapt some libraries such as ...
0
votes
0answers
24 views

How to use jFeed in a chrome extension?

I'm writing a chrome extension and I need to use jFeed. { "name": "myExtension", "version": "1.0", "manifest_version": 2, "description": "Description", "browser_action": { ...
0
votes
1answer
44 views

Remove Formatting on Chrome Extension Generated Content

What is a short, quick, and efficient way to remove any formatting from a website's stylesheet on any dynamically generated content from my Chrome Extension? For example, if I use the code below in ...
0
votes
1answer
44 views

Make “background” Chrome extension to modify the current page's code

I would like to make a Chrome app that modifies the text and code of the current page in some way, but I have no idea if this is possible. The basic idea is this: if(pagename == somepage) { ...
0
votes
1answer
68 views

Failed ajax call from chrome extension

I am trying to make an ajax call to the googlesuggest page that generates a xml. I use a small hack that seems to work and is documented here The code is this: $.ajax({ url: ...
0
votes
1answer
180 views

Chrome showing error as: Refused to execute inline script because of Content-Security-Policy

I am working on creating a Chrome Extension of an Image Cropping Widget. The code of my popup.html is as follows: <body> <textarea id="widget_script" style="border:1px solid ...
0
votes
1answer
30 views

Show notification after chrome extension is installed

Like many Chrome extensions do, when users install my Chrome extension, I want to tell them to "Click on this icon to start using the extension". As shown below: How do I do this? Thanks!
0
votes
0answers
63 views

Cross domain form submission in a Chrome extension

As soon as my user installs the extension, I need them to fill a form and submit it to a public domain server. I do this using jQuery and AJAX. Now, as an independent code, this is working fine - that ...
2
votes
0answers
59 views

Can't use jQuery ($.Storage.get) in a Chrome extension

When I type in the Chrome console $.Storage.get('ui_s') it returns value "th_classic" from a certain website as it should. But when I try to use it in my Chrome extension it returns an error with ...
0
votes
1answer
56 views

Link stored in var, get content in another var

I have a link stored in a variable and i want to get it's content in another var. The page itself is a XML page. I understood that it can be done within php, but i am curious if there is any way to ...
0
votes
1answer
89 views

Reuse existing jQuery UI dialog

I'm writing a chrome extension that adds a popup to a page when a user clicks on a context menu. I'm doing this with the activeTab permission, injecting a script onto the page that gets the selected ...
0
votes
1answer
88 views

Simulating a link click in JQuery with Chrome - using both href and download

I have a Chrome extension that dynamically creates links and adds them to a webpage. The links download files. They each have a download attribute to name the files correctly (only works in Chrome, ...
0
votes
4answers
75 views

Why doesn't this JQuery event to fire in gmail?

I am having problem with binding a Jquery event to gmail 'body' $('body').on('click', function(event) {   console.log("Entered function"); }); Visit IMDB.com (for eg) and in google chrome ...
0
votes
2answers
51 views

chrome extension - submit values not working

Chrome extension isn't working, here is my code... //manifest.json { "manifest_version": 2, "name": "auto login", "description": "With this extension you can auto login.", "version": ...
0
votes
1answer
121 views

Passing var from background.js to popup.js

I want to send a variable "word" from background.js to popup.js where it will be processed in a function. The problem is i cannot send that variable and start the popup.js in any way. I tried: ...
1
vote
2answers
89 views

Select text after other tags inside div

I have a structure like this : <div class="cls"> <a> <s>#</s> some text </a> </div> How can i select that 'some text' for processing in another ...
1
vote
1answer
95 views

Capture HTTP Status 300 for redirect download links

I'm developing a Chrome Extension to download links on a webpage. I came across some links there were not a direct download, for example like this one ...
0
votes
0answers
62 views

Clicking a link in gmail doesn't trigger my jquery event, What can I do to fix it?

The 'click' event in not trigger when you click on a link in gmail. Click on links in other sites work and clicking on simple text in gmail works. But not when you click on a link in gmail. ...
0
votes
0answers
21 views

Loading table without clicking the selector

Im delevoping a chrome extension that alerts users a new item has came out. The extension takes info from roblox.com/User.aspx using a get request. When you go to that link and scroll down, you will ...
0
votes
1answer
123 views

Chrome extension content script and document.ready event

My content-script defined to run on each and every page. I encountered a problem with Facebook: suppose I load "http://facebook.com", my content script runs and I can tell it because the event: ...
-1
votes
3answers
513 views

using jquery in chrome extension

the chrome extension i am building gets the selected text from the tab open when the user clicks on the select button in popup.I am trying to use jquery for this. Manifest.json { ...
0
votes
1answer
120 views

Chrome extension: Click Event Listener won't initiate

I'm working on a Chrome extension and I have an error that gets returned whenever I try to add a "click" event to a class. Error in event handler for 'undefined': Object #<NodeList> has no ...
1
vote
2answers
194 views

Chrome extension - content script - to get innerText of current tab - not working

I'm trying to get the innerText of the current opened tab in a chrome extension. Here's my manifest.json: { "manifest_version": 2, "name": "meow", "description": "meow-meow-meow", ...
3
votes
1answer
95 views

Synchronously get Stored data from content scripts

I am currently working on a chrome extension and source code is available on Github.com. The goal is to inject custom Javascript into webpages. Currently I store each custom Javascript Inject in ...
0
votes
1answer
40 views

Chrome Extension that replace a text in gmail chat

I used Chrome Content Scripts to inject this script : $('textarea').keyup(function(evt){ var txt = $(this).val(); $(this).val(txt.replace(/:\u06CC\s|:\u064A\s/g, ":D ")); }); This must ...
0
votes
1answer
489 views

Using onClick to download a file?

I'm learning to make my first google chrome extension. There's a website that has a variable titled songPath. I want to create a new button on the screen that when selected will download the url ...
-1
votes
1answer
54 views

Find all iFrames in HTML page and replace them [closed]

I'm wanting to use jQuery to find all iFrames in a page, then replace it's source. I'm doing this from a chrome extension, so any way to replace it, then load the iframe (So that the iframe is active ...

1 2 3 4 5 10