google-chrome

Get URL and save it | Chrome Extension

Basically on my window (when you click the icon) it should open and show the URL of the tab and next to it I want it to say "Save", it will save it to the localStorage, and to be displayed below into the saved links area. Like this: Something like bookmarks :) ...

Google Chrome does not honor cache-policy in page header if the page is displayed in a FRAME

No matter what I do: <meta http-equiv="Cache-Control" content="no-cache" /> <meta http-equiv="Expires" content="Fri, 30 Apr 2010 11:12:01 GMT" /> <meta http-equiv="Expires" content="0" /> <HTTP-EQUIV="PRAGMA" CONTENT="NO-STORE" /> Google Chrome does not reload any page according to the page's internal cache policy if the page is displ...

Monitoring XHR requests on Chrome in Linux

Is there a way to monitor AJAX requests in the Chrome browser? I tried firebug lite, and though it seems to work for some things (javascript errors and such), the XHR tab doesn't seem to do anything. Are there any alternatives? ...

Listing down stored records localStorage | Google Chrome Extensions

How do I get to list down the stored records in the for loop? Basically I want it to list down the records like this: '<div id="record_' + number + '">' + localstorage value + '</div>' The number in the class should add 1 every record, e.g. 1, 2, 3, 4 every record it lists down, and so on. The localstorage value should show the loc...

How to control Chrome browser from an NUnit test?

What is the easiest way to control Chrome (pc/mac) from an NUnit test? Things I want it to do: Use a proxy server I specify not bring up any dialog boxes that need to be clicked. open a url I specify close With firefox I can do all these things by writing out a temp firefox profile, and telling firefox to use it. If someone knows a...

multiple tinyMce instances not working in chrome

hi as with the title..in chrome (v.4.1) multiple tinyMce (v2.08) instances do not work, to be exact the first two instances are ok, the others not, and chrome gives this error: Uncaught Error: INDEX_SIZE_ERR: DOM Exception 1 Has this happened before? Unfortunately i can't show you any code 'cause it's for an admin area, i just need so...

How do I get Google Chrome's root bookmarks folder?

Hi, I'm trying to write a better bookmark manager in chrome extensions. The problem is there are no simple examples (that I can find) about how to actually use the bookmarks api (available here: http://code.google.com/chrome/extensions/bookmarks.html ) I've looked at the example source (when I d/led and installed it on my computer it di...

How to make Chrome obey this rule?

Here is the code: <table style='margin-left: auto; margin-right: auto; text-align: right;'> <tr> <td style='vertical-align: top;'>Title:</td> <td style='width: 400px;'><input type='text' style='border: 1px solid black; width: 100%;' /> </tr> <tr> <td style='vertical-align: top;'>Content:</td> <td><textarea style='border: 1px ...

Fixing Chrome resizing behaviour

<div style="background-color:red;width: 300px;"> <div style="float:left;border:1px solid yellow;">AAA AAA AAA</div> <div style="float:left;border:1px solid green;">BBB BBB BBB</div> <div style="clear:both;"></div> </div> Pasting the above HTML here: http://htmledit.squarefree.com/ And then zoom out in Chrome, you will see tha...

What's causing this background-image to display "incorrectly" in Opera and Firefox?

I know this is something I'm probably doing wrong, so please don't incinerate me for the thread title. I'm trying to put together a small personal website using HTML 5/CSS3. I've checked with the w3c validator and the site and CSS file fully conform according to the validator (However the validator has a warning attached that it might ...

Accessing dock icon right-click menu items with AppleScript

Is there any way to get an AppleScript to access the menu items that come up when you right click on a dock icon? Specifically, here's what I want to do: I use Google Chrome as my web browser on MacOS X Snow Leopard. I am a keyboard shortcut addict, and I use QuickSilver to create keyboard shortcuts for anything I can. One of the mos...

Jquery JSON .each() doesnt work in Google Chrome

I have a really simple chat application on a site which works pretty good. It requests by ajax like this: $.ajax({ url: "fetch/"+CHAT_SESSION_ID+"/"+LAST_MESSAGE_ID, dataType: "json", cache: false, success: function(data) { if (data.session_active == 0) { //If other chatter ended session alert("Session Ended"); } ...

Question about how to read the Safari/Chrome developer tool result

Hi, I am using the developer tool in chrome (i think it is the same as safari). I did a timeline when I load wwww.yahoo.com. I attached the screen shot: http://yfrog.com/4jpicture2yyp You see: * Send Request (http://www.yahoo.com) * Receive Response (http://www.yahoo.com) * Receive Response (http://www.yahoo.com) * Event (unload) * Fu...

Why is Chrome ignoring my CSS selector?

In the following page http://ada.kiexpro.com/test2/map.html I added: white-space: normal; to wrap the copyright text that is coming our from the Google map API. It works in FF and IE but Chrome seems to ignore the CSS selector: global.css: #cm_map span { white-space: normal !important; } ...

intercepting http traffic to/from Google Chrome

I use Fiddler for intercepting HTTP traffic when using IE or Firefox. Now that I'm using chrome for most of my day, I would like to be able to see the http traffic using something like Fiddler. What do chrome developers use ? I prefer something automatic like Fiddler but something that needs config, etc would also help. P.S : I'm on win...

How to detect if google chrome rss plugin is installed-php?

I'm working on a word press project. I noticed that rss is not working fine on google chrome. After I googled about it, it turned out that I need to install a plugin for google chrome so rss works. I want to know how to detect if the plugin is installed or not in case the user is using chrome browser. Currently I'm doing the following: ...

Get Title of selected tab

Is there a way of getting the value of the title of the page from a Google Extension? ...

Chrome not displaying Class set by jQuery or a Direct CSS property

This might seem like a bit of a design/css question but i really need some help. This is the page http://library.permilia.com/Gavin/version2.0_beta/lead.html It works on every browsers imaginable except chrome. By it works i mean it applies a class .error that sets the borders to 1px solid #f00 which is a red border. In chrome for so...

About browser applications: Native code vs Applets with certificates

Hey guys, I've been reading about the new native client support for chrome and I was wondering what are the advantages/disavantages compared to writing Java applet with a certificate? Quick note: A java applet with a security certificate can execute code on the user machine and "by-pass" the Java Security Manager. Thanks, -hbt ...

How to override embedded style in chrome?

Chrome appends an stylesheet and it make a lot of problems for me. for example this selector html>body, html>body * {background-color:#ffffff !important} is one oe the things I can't override in my own styles. Anyone has a solution for that? ...