Custom.css has stopped working in 32.0.1700.76 m Google Chrome update

Support for Custom.css has been removed from Chrome in version 32. This answer provides two methods for easily activating style sheets in the developer tools. The second method is recommended, but only works for Chrome 33+, the first method also works for Chrome 32. Both methods are Chrome extensions, to use the examples below, follow … Read more

How can I log an HTML element as a JavaScript object?

Use console.dir: var element = document.documentElement; // or any other element console.log(element); // logs the expandable <html>…</html> console.dir(element); // logs the element’s properties and values If you’re inside the console already, you could simply type dir instead of console.dir: dir(element); // logs the element’s properties and values To simply list the different property names (without … Read more

What does status=canceled for a resource mean in Chrome Developer Tools?

We fought a similar problem where Chrome was canceling requests to load things within frames or iframes, but only intermittently and it seemed dependent on the computer and/or the speed of the internet connection. This information is a few months out of date, but I built Chromium from scratch, dug through the source to find … Read more