The Google Chrome Developer Tools is a set of developer tools included with the Google Chrome browser. It allows users to inspect the internals of webpages without need of third-party extensions. Chrome's Developer Tools contains the following features: live DOM and CSS browser and editor ...
45
votes
3answers
3k views
See :hover state in Chrome Developer Tools
I want to see the :hover style for an anchor I'm hovering on in Chrome. In Firebug, there's a Style dropdown that allows me to select the different states for an element. I can't seem to find anything ...
37
votes
1answer
4k views
Asp.net MVC page is giving Mime type warnings for image files
While I do not see any functionally or jquery UI elements affected by this, but when I access my asp.net mvc web page the chrome developer console is logged with a bunch of error messages like so:
...
32
votes
6answers
2k views
Tools to selectively copy html+css+js from existing sites
Like most web developers, I occasionally like to look at the source of websites to see how their markup is built. Tools like Firebug and Chrome Developer Tools make it easy to inspect the code, but if ...
21
votes
6answers
517 views
Page reload in Chrome unnecessarily triggers bound events just prior to reloading the page
Hope someone has a good answer to this:
Why does Chrome (14.0) triggers the document ready and window load events when I refresh the page? Note that I am not talking about what happens when the new ...
18
votes
3answers
1k views
How to search all loaded scripts in Chrome Developer Tools?
In Firebug, you can search some text and it will look for it in all scripts loaded on a page. Can the same be done in Chrome Developer tools while debugging client script? I tried it, but it seems to ...
16
votes
2answers
634 views
Chrome “Developer Tools” element - hide annoying yellow dimensions box
How do I hide the annoying yellow box that appears under html fields when I hover over elements in the Chrome "Developer Tools" elements panel - it's driving me nuts as I can't see the bottom of my ...
13
votes
2answers
280 views
Find out whether Chrome console is open
I am using this little script to find out whether Firebug is open:
if (window.console && window.console.firebug) {
//is open
};
And it works well. Now I was searching for half an hour ...
11
votes
6answers
305 views
“Un-redefining” Google Chrome's console Object
I'm dealing with a system where the following Javascript code (which is out of my control) is being executed early in the page
if (!("console" in window) || !("firebug" in console))
{
var names = ...
10
votes
6answers
539 views
Include jQuery in the Chrome Javascript Console
Is there an easy way to include jQuery in the chrome Javascript Console for sites that do not use it? For example - on a website I would like to get the # of a certain kind of element. I know this is ...
9
votes
2answers
393 views
Inspecting javascript on jsfiddle.net in Google Chrome
Is it possible to set breakpoints using the google chrome inspector on javascript code entered into jsfiddle.net?
When I go to the script tab of the developer tools I see lots of scripts but I don't ...
9
votes
2answers
2k views
jQuery in Chrome Console (8.0.552.237)
It appears that jQuery selectors are not functioning in the Chrome Console. Any type of selector returns "null". The scripts do properly run the javascript, however.
Has anyone else noticed this ...
8
votes
4answers
451 views
Why would the background-image property cause a warning in Chrome?
I'm using jQuery's .css() method to set the background image of a div. The HTML in its final state is thus:
<div id="front-page-bg" style="background-image: ...
8
votes
3answers
884 views
How to remove all breakpoints in one step in Google Chrome?
How to remove all breakpoints in one step in Google Chrome? Using version 11.
[update]
There is now a feature request for this.
7
votes
1answer
255 views
Replay HTTP POST in google chrome Developer
Im switching from firebug to Google Chrome developer tools. I like it so far, but one feature that I really missing is replaying a http post.
on firebug, I can right click on the request (on the net ...
7
votes
3answers
271 views
Is there a way to filter output in Google Chrome's console?
I'm getting a lot of noise from the output of the 3rd party's page i'm currently playing with and i wonder if there's a way to filter the output on the console. Something like Logcat's flags. Is there ...
5
votes
2answers
207 views
XHR request is denoted as being cancelled although it seems to be successful
This is not really an issue, because the code works, but I am just curious as to why it happens.
I have the following jQuery code for an ajax post:
$.post('./add_fee_row/<?php echo $date; ...
5
votes
2answers
142 views
How to make JavaScript files show up in the list under “Scripts” in Google Chrome?
I have added 4 JavaScript files to my page:
<script src="scripts/jquery/jquery-1.6.2.min.js"></script>
<script src="scripts/jquery/jquery.mobile-1.0b2.min.js"></script>
...
5
votes
3answers
144 views
Can I tell the Chrome script debugger to ignore jquery.js?
Is there a way to tell the Chrome debugger (or maybe Firebug?) to not break within certain files? To assume they're not broken, essentially? This seems like something they might build in.
5
votes
2answers
1k views
In Chrome what is screen_capture_injected?
when i view the elements using chromes developers tools, in the BODY tag i see
screen_capture_injected=true
What does this mean? What does it do? I tried searching for it, but couldnt find ...
5
votes
3answers
174 views
How do I programatically trigger shortcut keys in Chrome with an Extension? (NPAPI or JavaScript Extensions)
Trying to figure out how to automatically trigger the web developer tools by executing the "Ctrl + Shift + i" via my own extension. There is one stackoverflow question, but none of the answers worked.
...
5
votes
1answer
195 views
Firebug cd equivalent in Chrome console / developer tools
In firebug, you can use the cd command to change the console context to an iframe. I need this when developing a facebook app to debug my javascript inside the iframe.
How do you do this in google ...
5
votes
3answers
96 views
How can I see the styles attached to :hover and other pseudo classes in firebug and the chrome debugger
I know there must be a way to do this and I've always just worked around it but, is there some way I can see (and/or edit) the pseudo-class styles applied to an element?
For example, Im looking to ...
5
votes
2answers
265 views
How to get a stack trace for “Unsafe JavaScript attempt to access frame with URL” errors in Chrome/Webkit?
The cause of this error showing up in the console in Webkit browsers is well-known and described clearly in the error text:
Unsafe JavaScript attempt to access
frame with URL
...
4
votes
2answers
179 views
Chrome DOM breakpoint keeps enabling itself
Yes, in the console, I made the horrible mistake of setting a DOM breakpoint on an element that wasn't getting the content injected into it that I expected it to.
Well, now whenever I load that page, ...
4
votes
4answers
175 views
Inspect helper clone
I use the Google Chrome developer tools. When I want to inspect an element, I usually right click it and select "inspect element". This doesn't work for draggable helper clones. My code is as follows:
...
4
votes
2answers
169 views
Workaround for logging objects to console in Chrome
If you execute this code:
var foo = {bar: 'baz'};
window.console.log(foo);
foo.bar = 'bla';
The console shows this after expanding the object:
(when logging objects and arrays, it's not the ...
4
votes
2answers
304 views
Safari/Chrome Developer Tools debug CSS overrides
Safari/Chrome Developer Tools indicate that a CSS rule is overridden by something else by striking it through, as shown in the image.
Sometimes I find myself in a situation where I can not figure ...
4
votes
4answers
1k views
How to use chrome web inspector to view hover code
Using chromes web inspector to view code is very usefull. But how do you view for example the hover code for a button? You will have to hover the mouse over the button and thus cannot use it (mouse) ...
3
votes
1answer
25 views
Is there a way to print out the line number of a js file in the console log
For debugging purposes, I usually use something like console.log('line number #').
Not sure if it's the best way to handle it but I think it would be helpful if I can just print out the line number ...
3
votes
1answer
70 views
How to get CSS selectors to work in the Developer Tools for Chrome 17?
It appears that the search window of the Dev Tools in Chrome 17 no longer matches CSS selectors. Boo. I know I can use the JS console but it really, really helps me to see the matches within the ...
3
votes
2answers
43 views
Maximum number of breakpoints in Chrome?
Does anyone know what the limit is on the maximum number of breakpoints that can be set with Google Chrome's Web Inspector? Thanks.
3
votes
3answers
98 views
Customise the look of the Chrome web inspector
I've grown tired of the multitude of issues I seem to hit on a daily basis with Firefox and I'm trying once again to switch to Chrome.
One of the things that frustrates me is the layout of the tabs ...
3
votes
4answers
996 views
How to save CSS changes of Styles panel of Chrome Developer Tools?
How to save CSS changes of Styles panel of Google Chrome Developer Tools?
At tool's website it's mentioned that we can see all change in resource panel
But I'm working locally on a CSS file but ...
3
votes
3answers
231 views
Can I programmatically open the devtools from a Google Chrome extension?
I have a chrome extension which hooks into the devtools. Ideally I want a badge that, when clicked, opens up the devtools on the new tab which I created. Is there any way to do this from the ...
3
votes
3answers
342 views
Is it possible to view jQuery added data in Chrome
When creating websites I often use jQuery's .data() function to add data to elements.
Is it possible to view all data which is stored with an element in Chrome?
So when I inspect an element it shows ...
3
votes
2answers
192 views
Why do the element size tooltip and computed style sizes differ in Chrome dev tools?
While I was debugging an issue in my GWT project, I noticed that when I moused over an element, I saw its size in a tooltip and a shaded region indicating its size and position in the screen. However, ...
3
votes
2answers
550 views
how to clear Chrome console by shortcut keys?
i want to clear Console tab in Chrome developer tool inside Chrome browser. i know that their is a icon for that chrome have but what's the shortcut keys for doing that.
Are their anywhere cheatsheet ...
3
votes
2answers
174 views
Google Chrome theme manifest problem
I creating a theme for Chrome and I experiencing that when I set tab_text in manifest.json, the bottom url bar is got that color too. I searched for solution in the documentation, but I din't find ...
2
votes
1answer
109 views
Chrome Web Inspector Web Socket Debugging
I can use the Network tab in the Google Chrome Web Inspector to debug the network traffic (AJAX requests, etc.). I can check what data is transferred easily. But Websocket connections only show as
...
2
votes
1answer
77 views
What is the Chrome console displaying with log()?
I think I may have found a bug with Google Chrome (16.0.912.75 m, the latest stable at the time of this writing).
var FakeFancy = function () {};
console.log(new FakeFancy());
var holder = {
...
2
votes
0answers
80 views
console.log inconsistent with JSON.stringify
I have reason to believe console.log and JSON.stringify can produce inconsistent views of the same object even if it was created in a straightforward manner (see notes).
Situation
In both Google ...
2
votes
1answer
86 views
High “Receiving Time” for HTTP Responses below 500 bytes in Chrome Devtools
While using devtools Network tab on Chrome 15 (stable) on Windows 7 and
Windows XP, I am seeing cases where "receiving" time for an HTTP
response is >100ms but the response is a 302 redirects or small ...
2
votes
1answer
90 views
Interacting with require.js modules from the Firebug/Chrome console?
I'm just getting started with require.js. I have successfully wrapped jquery, some plugins, and a couple of my own modules. I'm trying to interact with my modules (or jquery) from Firebug (or Google ...
2
votes
1answer
31 views
Chrome extension: short description in multiple languages
In Chrome extension you take care for the short description in the manifest.json itself with the attribut: description!
In the Chrome Appstore you can have a more detailed description in several ...
2
votes
1answer
60 views
Displaying the string representation of date object in the Watch Expression window
The console in Chrome Developer Tools used to echo out the string represenation of a Date object. Now it doesn't and isn't very useful - I have to call its toString() method. Also, the Watch ...
2
votes
2answers
100 views
Chrome Extension - Content Scripts Piling Up Multiple Times From AJAX Links/Navigation
I am super close to getting my Chrome Extension running perfectly, but am running into one last issue now.
The problem seems to be related to the content script being injected repeatedly on sites ...
2
votes
3answers
87 views
jQuery .load() - measure the time
I'm using jquery .load() to load some external(but within same domain) resourses into the page.
As this action is not visible through FireBug Network / Chrome Network console - how can I measure the ...
2
votes
1answer
145 views
Google Chrome Remote Debugging - Loading Page
I have been reading through Google Chrome Remote Debugging documentation (http://code.google.com/chrome/devtools/docs/remote-debugging.html), but I still don't understand how do I open a new web page ...
2
votes
2answers
377 views
How to force Chrome's script debugger to reload javascript?
I really like the ability to edit javascript in the chrome debugger however, I find that it can be really problematic getting the debugger to re-fetch the JavaScript from the server.
Sometimes I have ...
2
votes
1answer
169 views
Are there any way to modify the devTools.css of Chrome Dev Tool
The font size of Chrome Developer Tools is too small. I have to modify the devTools.css every time I open the Developer Tool.
Are there any way to modify the devTools.css and save it?