Tagged Questions
0
votes
1answer
40 views
POST request on Facebook.com in Chrome Extension fails
I have a Chrome Extension that sends AJAX POST with some data on every page.
The problem is that, Facebook block the AJAX request resulting this:
Refused to connect to
'URL_HERE' because it
...
0
votes
1answer
32 views
Chrome Extensions - make a cross domain AJAX request
I working on experimental learn-by-doing project.
My chrome extensions (loading unpacked locally) has some AJAX calls (cross domain, JSONP)
Unfortunately, I get the following error message:
Refused ...
0
votes
0answers
51 views
Get JSESSIONID from AJAX answer
In a chrome extension I want to make AJAX requests to http://www.keyserver.pgp.com. The thing is, the server answer with a JSESSIONID, and I have to handle it and join it to my future requests.
I ...
0
votes
0answers
55 views
Redirect with AJAX in a chrome extension
I am trying to code an interface with keyserver.pgp.com in a chrome extension.
First I'd like to look for a key with this simple request (it's a POST request here but it also works with GET) :
...
-1
votes
1answer
32 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
143 views
How to display popup for each url using page action?
I need some guide on how to achieve this kind of thing.
The thing I want to do is to use page_action to display popup for specific URLs. What I want to achieve is something like this:
When a user ...
0
votes
2answers
34 views
creating an evenlistener for a list which was added using a node appendChild
I'm trying to add a select list dynamically to my html. I've done this successfully by adding a node to the dom. My problem is on a separate javascript file I want to create an eventlistner which ...
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
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 ...
1
vote
1answer
96 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 ...
-1
votes
2answers
48 views
Constantly sending data with ajax in chrome extension
is it possible to post data from google chrome extension to another page, for example every minute? Someone opens chrome and then every minute will be information send to my page.. Thank you for ...
0
votes
1answer
66 views
Getting a page with jQuery .get - Google Chrome Extentions
I'm creating a Google Chrome extension. I've done this before, anyway I'm trying to load a page and HTML from the page. Not trying ot display it, just trying to get a div's contents on the page.
...
0
votes
2answers
147 views
Content Security Policy with Chrome Extensions - Getting data via remote URL
I've made a chrome extension with the following line in the manifest.json, so that I can get data via an ajax request.
"content_security_policy": "script-src 'self' http://localhost; object-src ...
1
vote
3answers
146 views
Cannot trigger a click from XMLHttpRequest
I wrote a similar post about this but it was closed for being too localized. After some research and testing, I think I found the source of the problem, and this question should be better explained ...
1
vote
2answers
128 views
Trouble with jQuery AJAX call from Chrome extension
BLUF: Running AJAX call from Chrome extension isn't working properly.
AJAX:
$.ajax({
type: "GET",
url: ...
0
votes
1answer
60 views
Handling AJAX Origin errors, caused by the Chrome Extension
Is there way to handle AJAX Origin errors from Chrome's extensions ?
Denying load of
chrome-extension://kldbdjcbjohfhddpicldkbifbkcdanid/data.json.
Resources must be listed in the ...
0
votes
0answers
54 views
Post from Background.js
I this exact code working on a clientscript but in background.js it doesn't work;
var score = function(direction, message) {
jQuery.ajax({
url: Url + '/' + direction,
type: 'POST'
...
-1
votes
2answers
115 views
Chrome extension iFrame all actions outside it
I am making a chrome extension and I am loading a webpage using iFrame. But, I want all actions that come from it (ex. users click on a link, searches if there is searchbox) to go to with no iFrame ...
0
votes
1answer
258 views
Chrome Extension - Can't make AJAX request to server on other domain
I have a Chrome Content Script and I want to POST data to a remote server using AJAX
$.ajax({
url: "http://remote_server/endpoint.php",
type: "POST",
dataType: ...
1
vote
1answer
48 views
AJAX firing no_connection(); too early
I have this Google Chrome extension..
manifest.json:
{
"name": "My extension",
"manifest_version": 2,
"version": "1.0",
"permissions": [
"tabs", "http://*/*"
],
"browser_action": {
...
0
votes
1answer
68 views
Why does this script call the server twice?
I hope this is enough code to identify the problem - I've been hitting my head against a wall trying to figure this out. It's Javascript from the popup part of a Chrome extension.
...
0
votes
1answer
141 views
Use of aJax in extension default_popup?
Can I somehow use aJax in my Google Chrome Extension "default_popup".
I have tried the following...
manifest.json:
{
"name": "My extension",
"manifest_version": 2,
"version": "1.0",
...
1
vote
1answer
56 views
How do I make a request to an external site from a content_script
I am trying to make a chrome extension that will display a popup in my Gmail that will contain some information from my external server, say today's weather.
What I have tried
I have tried ...
1
vote
1answer
912 views
Javascript binary file download, and ajax file POST upload in Chrome Extension
I'm writing a chrome extension content script which will embed itself on some pages, and when there are certain file type links (.doc, .torrent, etc) it will download that file, and then do a file ...
0
votes
0answers
58 views
reading a tab's ajax response data
I want to build a chrome extension that reads the response of an ajax call a tab makes. So let's say a page periodically makes an ajax request and receives some data back, I want to read that data - ...
1
vote
1answer
198 views
Domain Authorization in Chrome Extension
There is a demand to make cross domain request to a remote service in chrome extension via ajax.
All works properly while user is authorized on a service before he/she uses the extension. But when ...
0
votes
1answer
137 views
Ajax Response ReadyState Jumps To 4
I'm building a chrome extension and my Ajax request's response comes off as "ready" (Status 200 and readystate 4) 4 times instead of just once , and it doesn't go through stages 1-3 . Instead 4 times ...
2
votes
1answer
180 views
Scrape / eavesdrop AJAX data using JavaScript?
Is it possible to use JavaScript to scrape all the changes to a webpage that is being updated live with AJAX? The site I wish to scrape updates data using AJAX every second and I want to grab all the ...
1
vote
1answer
214 views
Running injected JS functions from a Chrome extension AJAX loaded page
I am trying to build a Chrome extension that uses injected JS to insert HTML from my server into a Facebook page from my server. Then, I want to be able to call a Javascript function from within the ...
0
votes
2answers
311 views
How to Add a value to User-Agent header in a .ajax request?
I'm trying to do a Plugin for Chrome where I retrieve info from several pages, some of them they have a loadbalancer and need a specific user agent code to route me to the correct place.
Now, I'm ...
0
votes
0answers
135 views
Chrome Extension Not posting Data using Jquery Ajax
I'm creating a chrome extension which grabs the current tab url and post it to the server(PHP).
Here is my manifest file:
{
"name": "testApp",
"version": "0.0.0.1",
"description": "test Description",
...
0
votes
1answer
67 views
Substituting AJAX call for another
Is there any simple way in Chrome to redirect an AJAX call to another server without changing DNS? (for instance: calls to http://domain.com/page.html will be directed to ...
0
votes
1answer
557 views
xmlHttpRequest via Google Chrome Extension, simple POST to .php page
I've spent hours trying to figure this out.
I have a basic Google Chrome Extension that records some data and I want the data to be sent via xmlHttpRequest to an external php page (with POST).
In my ...
-1
votes
1answer
152 views
How to wait until the embedded ajax call is completed when injecting my script?
It's Google Chrome extension development. I'm using content script to inject into webpages. However some webpages have their own ajax scripts that change the content dynamically. How do I wait until ...
0
votes
1answer
309 views
Chrome Extension : How to Get a form and fill and submit it
I am building a chrome extension where I need to get HTML from the website. It has a form which needs to be filled and submitted back.
I click the extension button, pop up opens. I enter details. It ...
1
vote
1answer
808 views
Get JSON in chrome plugin
small problem with my chrome plugin. I just wanted to get a JSON array from another server. But manifest 2 doesn't allow me to do it. I tried specify content_security_policy, but the JSON array is ...
3
votes
1answer
4k views
Ajax call not working chrome extension with manifest v2
I'm trying to play around with a basic chrome extension which goes something like this
chrome.omnibox.onInputChanged.addListener(function(text, suggest){
var baseUrl = "http://sample.com";
...
2
votes
1answer
540 views
Chrome extension that runs code when ajax requests happen
So, to give a basic description of my issue.
I have a extension that is working right now (finally) that wraps phonenumbers in an type of tag.
It is working right now, but I am having an issue ...
2
votes
1answer
173 views
Access remote domain using AJAX from extension
I'm trying to develop a Chrome extension that AJAX's a particular page, and then will display notifications depending on what is on that page. (Using webkitNotifications)
This page is a ticketing ...
0
votes
2answers
164 views
Impossible to cross site ajax api calls in a chrome extension?
I am trying to create a chrome extension that calls my rails app's api. currently the api returns json and it works fine, however when I try to build it into a chrome extension, it says :
Refused ...
1
vote
1answer
182 views
Convert non unicode string to base64 in JavaScript?
I'm writing a downloader chrome extension. I'm trying to fetch the file with ajax and encode it with atob(str) but it only allows plain strings so can't get data:blah,base64 working.
0
votes
1answer
991 views
Ajax not working in Chrome extension?
I am trying to write a sample extension, this is how it should work. My extension has an option page, when people click on the sign-in button, it sends an ajax request to test.php and gets information ...
1
vote
2answers
1k views
Parse json from an external site with JavaScript
I am trying to parse some json on an external site but I am having trouble. It must be with JavaScript or JQuery, as it is for a chrome extension. To get to the point:
I need to get the number from an ...
0
votes
2answers
227 views
$.getJSON on chrome extension fails to work properly
I'm creating a chrome extension, and want to be able to get a profile picture from a username. Unfortunately, there isn't an api for the website and there is no correlation between the profile URL and ...
0
votes
1answer
690 views
Chrome extension run content script on ajax change
I have a chrome extension which makes some changes on the site (editing comments).
After recent changes on the site (site is not mine) - the comment block loads using ajax (before it was simple post ...
0
votes
0answers
269 views
Autofill new tabs with a google chrome extension
It's my first time on StackOverflow.
I'm doing a project for the university, and I need to write one chrome extension and I want to open a new tab and autofill the user and the password form fields.
...
0
votes
1answer
286 views
AJAX request to https php server from Firefox and Chrome extensions
I'm working on extensions for Firefox and Chrome. The data used by my extensions is mostly generated from ajax requests. The type of data being returned is private, so it needs to be secure. My server ...
0
votes
1answer
171 views
Ajax code to intercept a form submit not working with twitter
I am working on a chrome-extension that intercepts a form submit event of a webpage and checks the headers. I am using jquery form intercept for the same. It's working for most sites, but off late I ...
2
votes
2answers
630 views
How to get Google Plus Notifications count?
I'm developing a Google Chrome extension and I want to retrieve Google+ notifications count for current user, in a script running in the background.
Is it possible? I studied the Google+ APIs at ...
