Google Chrome is a web browser available on both mobile and desktop platforms. Developed by Google, it uses the WebKit layout engine and application framework.
41
votes
1answer
12k views
Building a Chrome Extension - Inject code in a page using a Content script
I'm learning how to create chrome extensions and I just started developing one to catch youtube events. I want to use it with youtube flash player (later i will try to make it compatible with html5).
...
132
votes
25answers
157k views
Get real image width and height with JavaScript in Safari/Chrome?
I am creating a jQuery plugin.
How do I get real image width and height with Javascript in Safari?
Following works with Firefox 3, IE7 and Opera 9:
var pic = $("img")
// need to remove these in of ...
88
votes
3answers
11k views
IE/Chrome: are DOM tree elements global variables here?
Working on an idea for a simple HTMLElement wrapper I stumbled upon the following for IE and Chrome:
for a given HTMLElement with ID in the DOM tree, it is possible to retrieve the div using its ID ...
28
votes
5answers
4k views
Is Chrome's JavaScript console lazy about evaluating arrays?
I'll start with the code:
var s = ["hi"];
console.log(s);
s[0] = "bye";
console.log(s);
Simple, right? In response to this, Firebug says:
["hi"]
["bye"]
Wonderful, but Chrome's JavaScript ...
83
votes
5answers
66k views
Chrome: Disable same origin policy
Is there a way to disable the same origin policy on Google's Chrome browser? This is strictly for development, not production, use.
33
votes
4answers
11k views
How can I make setInterval also work when a tab is inactive in Chrome?
I have a setInterval running a piece of code 30 times a second. This works great, however when I select another tab (so that the tab with my code becomes inactive), the setInterval is set to an idle ...
167
votes
10answers
224k views
How do you launch the javascript debugger in Google Chrome?
When using Google Chrome, I want to debug some javascript. How can I do that?
113
votes
1answer
41k views
Updating address bar with new URL without hash or reloading the page
I either dreamt about chrome (dev channel) implementing a way to update the address bar via javascript (the path, not domain) without reloading the page or they really have done this...
However...I ...
92
votes
10answers
23k views
How can I use jQuery in Greasemonkey scripts in Google Chrome?
As some of you may know, Google Chrome has put some severe limitation on Greasemonkey scripts.
Chromium does not support @require, @resource, unsafeWindow, GM_registerMenuCommand, GM_setValue, or ...
29
votes
6answers
44k views
Problems with jQuery getJSON using local files in Chrome
I have a very simple test page that uses XHR requests with jQuery's $.getJSON and $.ajax methods. The same page works in some situations and not in others. Specificially, it doesn't work in Chrome on ...
65
votes
14answers
36k views
Detect blocked popup in Chrome
I am aware of javascript techniques to detect whether a popup is blocked in other browsers (as described in the answer to this question). Here's the basic test:
var newWin = window.open(url);
...
66
votes
12answers
69k views
Copy / Put text on the clipboard with FireFox, Safari and Chrome
In Internet Explorer I can use the clipboardData object to access the clipboard. How can I do that in FireFox, Safari and/or Chrome?
136
votes
9answers
129k views
Chrome says “Resource interpreted as script but transferred with MIME type text/plain.”, what gives?
In FF and all, my javascript works fine. But in Chrome it gives this message: Resource interpreted as script but transferred with MIME type text/plain.
I have checked all the script tags and they all ...
246
votes
9answers
66k views
disabling chrome cache for website development
I am modifying a site's appearance (css modifications) but can't see the result on chrome because of annoying persistent cache. I tried shift+refresh but it doesn't work.
how can i disable the cache ...
430
votes
9answers
89k views
WebKit issues with event.layerX and event.layerY
I just noticed that I get tons of deprecated warnings in the latest (canary) build of Chrome.
event.layerX and event.layerY are broken and deprecated in WebKit. They will be removed from the ...
37
votes
6answers
10k views
How does the paste image from clipboard functionality work in Gmail and Google Chrome 12+?
I noticed a blog post from Google that mentions the ability to paste images directly from the clipboard into a Gmail message if you're using the latest version of Chrome. I tried this with my version ...
47
votes
4answers
82k views
Chrome Uncaught Syntax Error: Unexpected Token ILLEGAL [duplicate]
Possible Duplicate:
SyntaxError: Unexpected token ILLEGAL
Receiving the subject error when Chrome tries to load the script file on the page. It says it's at the last line of the javascript ...
42
votes
3answers
34k views
Manually adding a Userscript to Google Chrome
Instead of "installing" User-Scripts I found many tutorials on the web to add it manually. All of them told me to do the same steps:
Make the directory ...
38
votes
7answers
37k views
Unexpected token ILLEGAL in webkit
// if the box is outside the window, move it to the end
function checkEdge() {
var windowsLeftEdge = $('#window').position().left;
$('.box').each( function(i, box) {
// right edge of ...
23
votes
7answers
23k views
How can I set default homepage in FF and Chrome via javascript?
I have a code that works only in IE anb I was looking for something similar in FF and Chrome to set user's default homepage through a link 'click here to make this site your default homepage', but so ...
12
votes
1answer
9k views
Chrome: timeouts/interval suspended in background tabs?
I was testing the accuracy of setTimeout using this test. Now I noticed that (as expected) setTimeout is not very accurate but for most appliances not dramatically inaccurate. Now if I run the test in ...
15
votes
4answers
16k views
Is there a way to simulate key presses or a click with javascript?
I wrote a google chrome extension and the site that I want to use my extension on requirements me to click or tab onto a text box (because I think it runs javascript verification "onclick" only). Now ...
33
votes
11answers
13k views
How can I force WebKit to redraw/repaint to propagate style changes?
I have some trivial JavaScript to effect a style change:
sel = document.getElementById('my_id');
sel.className = sel.className.replace(/item-[1-9]-selected/,'item-1-selected');
return false;
This ...
32
votes
12answers
112k views
Uncaught SyntaxError: Unexpected token :
I am running an AJAX call in my MooTools script, this works fine in Firefox but in Chrome I am getting a Uncaught SyntaxError: Unexpected token : error, I cannot determine why. Commenting out code to ...
66
votes
12answers
30k views
Google Chrome form autofill and its yellow background
I have design problem with Google Chrome and its form autofill function.
If Chrome remembers some login/password it changes a background color to a yellow one.
Here are some screenshots:
How to ...
31
votes
4answers
52k views
“Origin null is not allowed by Access-Control-Allow-Origin” in Chrome. Why?
I am working on some Javascript to run locally on my PC. I am using a jQuery CSV plugin (http://plugins.jquery.com/project/csv) to load load a csv file into javascript arrays. The script is simple:
...
21
votes
4answers
77k views
Background Image for Select (dropdown) does not work in Chrome
I want to use an image for the background of a select/dropdown. The following CSS works fine in Firefox and IE, but does not in Chrome:
#main .drop-down-loc { width:506px; height: 30px; border: none; ...
9
votes
6answers
9k views
create a file using javascript in chrome on client side
I would like to know if I can create a text file and save the file in the users "Downloads" section in his/her computer using javascript. The way my feature should work is when the user clicks the ...
19
votes
16answers
9k views
page loads twice in Google chrome
Does anyone have any problems with Page_Load being executed twice in Google Chrome?
It's a short question, i do not know what else to explain...
I have a simple asp.net page and in Firefox and IE all ...
3
votes
4answers
22k views
Does execCommand SaveAs work in firefox?
Why does this not work in ff/chrome?
javascript: document.execCommand('SaveAs','true','http://www.google.com');
(used as a bookmarklet)
19
votes
4answers
14k views
Chrome Extension: how to capture selected text and send to a web service
For the Google Chrome extension, I need to capture selected text in a web page and send to a web service. I'm stuck!
First I tried a bookmarklet, but Chrome on Mac seems to have some bookmarklet ...
34
votes
7answers
22k views
How can I make XSLT work in chrome?
I have an XML document here that is served with a corresponding XSL file. The transformation is left to be executed client-side, without JavaScript.
This works fine in IE (shock horror), but in ...
13
votes
6answers
6k views
Check whether user has a Chrome extension installed
I am in the process of building a Chrome extension, and for the whole thing to work the way I would like it to, I need an external JavaScript script to be able to detect if a user has my extension ...
9
votes
5answers
1k views
Bizarre console.log behaviour in Chrome Developer Tools [duplicate]
Possible Duplicate:
Is Chrome's JavaScript console lazy about evaluating arrays?
Open up Chrome Developer Tools and type in:
var a = [];console.log(a);a.push(1);console.log(a);
You ...
18
votes
3answers
15k views
Injecting JS functions into the page from a Greasemonkey script on Chrome
I have a Greasemonkey script that works just fine in Firefox and Opera. I struggle with getting it to work in Chrome, however. The problem is injecting a function into the page that can be invoked by ...
48
votes
6answers
19k views
Why does Chrome ignore local jQuery cookies?
I am using the jQuery Cookie plugin (download and demo and source code with comments) to set and read a cookie. I'm developing the page on my local machine.
The following code will successfully set a ...
16
votes
5answers
29k views
Add to browser favorites/bookmarks from javascript but for all browsers (mine doesn't work in CHROME)?
can anyone help, i am using the following for adding a bookmark to IE and firefox but its not working in CHROME and i don't get my error msg saying "not supported" either..
Anybody know of a good ...
29
votes
4answers
21k views
How can I get the URL for a Google Chrome tab?
I'm having fun Google Chrome extension and I just want to know how I can store the URL of the curent tab in a variable.
Maybe it's in the doc, but doesn't want to load :s
12
votes
3answers
33k views
jquery click event on select option element in chrome
I m having a problem in chrome with the following:
var items = $("option", obj);
items.each(function(){
$(this).click(function(e){
//alert("test");
...
20
votes
5answers
26k views
style.display='none' doesnt work on option tags in chrome, but it does in firefox, anyone know why? or a workaround?
ok, heres some sample code that demonstrates the problem.
if i click the button in firefox, the first option disappears.
if i click the button in chrome, nothing happens, or rather if i inspect the ...
21
votes
1answer
8k views
How do I use Google Chrome 11's Upload Folder feature in my own code?
Google Chrome 11 now supports uploading folders. Currently this feature is only implemented in Google Docs, and I have been unable to find any API documentation on how to use this in my code.
From ...
42
votes
6answers
38k views
Can Google Chrome open local links?
I am linking on an intranet page to a local file on a shared drive:
<a href="file:///s:/test.xls"> Test</a>
This works in IE and Firefox with an addon called local link.
How can i get ...
29
votes
6answers
21k views
Distinguish Chrome from Safari using jQuery.browser
It seems jQuery.browser is able to identify webkit rather easily as of 1.4. But how can I use it to distinguish Chrome from Safari (and visa-versa)?
25
votes
3answers
5k views
chrome extension first run
How can I find out if my extension is being run for the first time / has just been upgraded?
Thanks!
7
votes
4answers
4k views
Keydown Simulation in Chrome fires normally but not the correct key
I want to simulate keydown events on a given textarea element in an html page. Since I am using chrome, I called initKeyboardEvent on my variable and I passed the keyCode I want to type into the ...
3
votes
2answers
7k views
Chrome Extension: Port error: Could not establish connection. Receiving end does not exist.
When trying to communicate between my Content- and Background Script I get the following errors:
Port error: Could not establish connection. Receiving end does not exist.
Error in event handler for ...
117
votes
5answers
56k views
“Unsafe JavaScript attempt to access frame with URL…” error being continuously generated in Chrome webkit inspector
Chrome (or any other webkit browser) throws a ton of these "Unsafe JavaScript attempt to access frame with URL..." when working with the Facebook API for example.
It doesn't interfere with actual ...
30
votes
2answers
10k views
HTML 5 Geo Location Prompt in Chrome
Just starting to get into HTML 5 and an testing out geo location...liking it so far. I am hitting a bit of a speed bump though...when I try to get my geo location, chrome automatically blocks the page ...
27
votes
4answers
9k views
Why does Chrome incorrectly determine page is in a different language and offer to translate?
The new Google Chrome auto-translation feature is tripping up on one page within one of our applications. Whenever we navigate to this particular page, Chrome tells us the page is in Danish and ...
18
votes
6answers
8k views
How to detect when a tab is focused or not in Chrome with Javascript?
I need to know if the user is currently viewing a tab or not in Google Chrome. I tried to use the events blur and focus binded to the window, but only the blur seems to be working correctly.
...
