google-chrome

Writing to the DOM on body onload not working in Google Chrome

Hello. In Google Chrome, the following code snippet: <html xmlns = "http://www.w3.org/1999/xhtml"&gt; <head> <title>Example</title> <script type = "text/javascript"> <!-- function onBodyLoad() { var x = 42; document.writeln("x = " + x); alert("on load"); } --> <...

Cookie file for Google Chrome / unix

Where does Chrome store its cookie file on a unix system? ...

Chrome Application Shortcuts / Mozilla Prism Installer

I want to deploy a installer package to my customers. My application is basically a website, but I want them to have the optimal experience via. Chrome or Mozilla Prism. I would like to give them an installer (win:msi/exe) that puts an icon on the desktop and launches my app. They may or may not have chrome and Firefox already install...

[Cufón] Cufon.now(); causing problems in Google Chrome

When using Cufón the documentation recommends using the following snippet with IE in order to eliminate a small delay in rendering the replacing font. <script type="text/javascript"> Cufon.now(); </script> While testing it I never experienced any delay with IE7+ but the issue occur using Google Chrome. If I put the snippet on, Chrome ...

Why is Google Chrome not converting tags/entities?

I keep running into this problem recurring, where Chrome refuses to parse tags/entities on text which is handed to it by JavaScript. I first noticed it with entities like &quot;. It will display &quot; as opposed to " Now I am also running into the problem with <strong> and <em>. It displays <strong>Text</strong> as opposed to bolding ...

Does Android Chrome supports <audio /> tag?

Is it possible to play continuous audio stream (MP3 / AAC) in Android browser using <audio /> tag? If you're not sure, could you at least recommend some good testing page containing and using <audio /> tag? ...

Chrome: First Link(s) on Some Pages Don't Work--Why?

My problem: Llinks work in IE 7 and Firefox, but in a number of cases on a site I'm working on updating, the first link(s) on a page don't work in the Chrome browser even though they do from the "View Source" page. I've looked for obvious code problems and can't find any. What am I missing? Something's up, but what? Thanks for your help....

JQuery UI .show('slide') not animating correctly

I am trying to make a div that slides out nicely when you mouse over a "trigger". It is appearing in full, then quickly disappearing and sliding out again. I can't seem to figure out the reason for this behavior. If needed I can put a sample up in a bit. Test case is up here. This is happening on all major browsers except IE6. HTML: ...

JavaScript JQuery Ajax Issue: POST Works fine in Firefox, IE, Safari but not Chrome.

I'm new to JavaScript, and working on a hobby project with a few developers. We have a simple page that is used to submit requests to a database. I decided to try learning JQuery, and started implementing some AJAX functionality into this request page. It works fine in FireFox, IE and Safari, but for some odd reason, I can't get it to w...

XSLT document() usage with WebKit browsers

I'm having an issue when attempting to include and access multiple XML documents in an XSL stylesheet. I'm assigning document nodes as variables and then attempting to access them in my xsl:template, similar to this: <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; <xsl:output method="xml" omit-xml-d...

Why don't Google Group pages load in a WebKit Iframe?

In Chrome and Safari, the following loads as a blank frame. <html> <head> <title>Iframe Test</title> </head> <body> <iframe src="http://groups.google.com/group/websync"&gt;&lt;/iframe&gt; </body> </html> Yet the direct URL works fine. What gives? ...

Development for unstable versions of Chrome?

I would like to know what the members of this great community think of developing and adjusting their web apps and sites in general to recent Google Chrome beta browsers on Linux and Mac OS X and of course Google ChromeOS. Do you think it's too early and I shouldn't waste my time adjusting myself to something that might change due to bu...

CSS Hacks, Firefox 3.5 and Google Chrome

I searched around and allegedly, body:nth-of-type(1) is used in CSS to target only Safari and Google Chrome. Lo and behold, Mozilla reads it properly too. I searched ten times more but came up with nothing, so here I am. Is there a Google Chrome-only CSS hack? ...

Chrome Bookmark Search

Can you get results from chome.bookmark.search without having to display them? Update (Answer): Ok. Maybe my problem is more complex. If I want to use the result globally. function _search() { var query = $("searchBox").value; chrome.bookmarks.search(query, function (bmk){ var id = bmk[0].id; chrome.bookmarks.get(id, functi...

Browser extension: is there a way to stop the loading of images?

In either Firefox/Chrome extension, is there a way to stop the loading of <img> before the browser actually starts loading them from a page? ...

C# plugin for Google Chrome

Can I communicate to Google Chrome in C#? For writing a chrome plugin for example. ...

Is there a way to edit a chrome extension manifest file from within the extension?

I want to allow the user to select the icon that appears for their extension from a list. Is there a way to edit the manifest from within the extension? So If I have the following in my chrome extension manifest file: "browser_action": { "default_icon": "ico32.gif", } And I want to give the user the ability to change it to th...

Google Chrome - Alphanumeric hashes to identify extensions

Google Chrome is using alpha numeric hashes as identifiers for the Chrome extensions. For eg. "ajpgkpeckebdhofmmjfgcjjiiejpodla" is the identifier for XMarks Bookmark Sync extension. Which algorithm is in use here to generate such strings? How are they ensuring uniqueness? ...

How to attach Chrome developer tools to the same window?

I'm trying out the developer tools on Chrome for Mac OS and I'm finding a huge annoyance. I don't see an obvious method to make the tools window attach to the bottom of the page I'm inspecting like in Firebug and Safari ...

Loading XML into Document object in Google Chrome

I am unable to load an XML file into a JavaScript Document in Google Chrome with the following function: // load XML document based on whether the browser is IE or other browsers function loadXMLDocument(url) { var doc; if (window.ActiveXObject) // IE { doc = new ActiveXObject("Msxml2.DOMDocument.6.0"); doc.async ...