The Google Chrome Developer Tools is a set of developer tools integrated into Google's Chrome browser. Use this tag for questions related to the usage of Chrome's Developer Tools.
0
votes
0answers
4 views
Way to find matching (closing) Javascript bracket in Chrome Devtools?
Javascript noobie here. I'm reviewing a big swath of JS code using devtools and I'm wondering if there's an easy way to locate where the closing bracket is on a function. Is there a feature where I ...
0
votes
0answers
3 views
How do I get the checkbox “Allow access to file URLs” to show up next to my app? I have file write permissions in manifest
I have the permission asking for filesystem.write ability in my manifest but on the chrome://extensions page, the check box doesn't show up. And when I click "permissions" next to my app's icon, it ...
1
vote
0answers
7 views
cross-browser server side web app logging library
To send debug messages from our web application to the browser, we have Firebug+FirePHP for Firefox, as well as Chrome Logger for Chrome/Chromium. FirePHP for Chrome does not work with the latest ...
1
vote
1answer
31 views
Should there be any difference between window.localStorage.setItem and localStorage.setItem?
I have a Chrome extension that works perfectly for Mac and Linux users but isn't working for Windows users. When I go into a console and set an item in localStorage it works fine, however when the ...
0
votes
0answers
22 views
Retained size of Javascript Object full of Booleans
I am new to using Chrome's profiler. So this might be a misinterpretation of the results I'm getting.
If I open Chromes profiler and take a heap snapshot of the following webpage I notice that obj3, ...
0
votes
0answers
29 views
PUT AJAX request don't work when developer tools closed
I have Extension, and I'm making several ajax requests from extension content scripts, to domain different from open in the tab. For some reason everything works just fine when developer tools are ...
0
votes
1answer
29 views
Google Chrome editing Javascript on the fly
I've tried to ease my life by using Google Chrome's devtools and as I've tried to modify javascript of page on fly but it seems to behave unexpectedly
I have this function that is called every frame ...
0
votes
0answers
8 views
In the Chrome Dev Tools Timeline, what causes Recalculate Style events that have no stack?
I was having an issue with Chromium redrawing a page, and I noticed in the timeline that Recalculate Style was firing at what I think is a really high rate:
Note that this event is firing at this ...
0
votes
0answers
11 views
How to stop Android File Transfer stealing my Chrome debugging session?
I've got Android Chrome debugging working nicely on my Mac using the adb remote debugger
I also have Android File Transfer which I think might be what's showing as an offline emulator when I run adb ...
0
votes
1answer
23 views
Debugging Content Scripts for Chrome Extension
General Questions
Hello! I'm delving into the world of Chrome Extensions and am having some problems getting the overall workflow down. It seems that Google has recently switched to heavily ...
0
votes
2answers
44 views
How do I keep my app from going inactive?
In my manifest I have:
"app":
{
"background":
{
"scripts":
[
"main.js"
],
"persistent": true
}
}
but it still shows Inspect views: ...
0
votes
0answers
17 views
Interpret Chrome Dev Tools: Timeline FPS
Background info:
I have two large images animating between each other with opacity (they take up half the screen). I used jQuery for the animation.
Testing:
I ran a test in Chrome Dev tools's ...
0
votes
0answers
23 views
Chrome Extension Injecting CSS
I am experimenting with Chrome extension programmatic css injection . I wrote a function in my background page :
function insertcss() {
chrome.tabs.insertCSS({code : "font-size: 40px !important; ...
1
vote
2answers
25 views
dojo AMD module methods in chrome chrome/firebug
Before AMD, we could use methods directly in chrome/firebug command line like:dojo.byId() or dijit.byId() etc.
But in AMD form, how we will get methods available in a module in command line?
0
votes
0answers
11 views
DevTools Opens CSS in a new Tab Instead of Opening up Sources Panel
I'm trying to follow along the Discover DevTools course over at CodeSchool.
When I click on the link to the CSS file, I expect DevTools to open it up in the Sources Panel. Instead, Chrome just opens ...
0
votes
1answer
33 views
Chrome Developer Tools can't see javascript
So I am having this really weird thing where my javascript doesn't show in my sources window. If I set a debugger in my js and then reload the page, it will break and I can see the javascript. The ...
2
votes
0answers
44 views
Expanding the elements DOM list in Chrome dev tools
So when writing JavaScript one can use debugger in their code to fire a break point and pause the application at that point in, say, Chrome. This is all fine and dandy, but is there a way I can tell ...
0
votes
2answers
44 views
Is there a way to programatically put Chrome browser into kiosk mode?
I'm writing a Chrome app that needs to be run fullscreen and prevent users from exiting full screen (i.e. kiosk mode). Right now, the only thing I've been able to find is the command-line switch but ...
0
votes
1answer
26 views
edit html page in chrome developer tools
I have a webpage which I am analyzing in chrome. I want to add elements and mess around with the html of that page.
I tried using chrome developers tools for that, I went to the elements tab and I ...
0
votes
1answer
45 views
When calling a function (in a loop) which uses a callback, how pass variables in and have them not change?
I'm calling sendMessage in a loop for a bunch of appIds that are in an array. When my callback is called, I need to check for an error and then "blacklist" the appId that has the error. The problem is ...
0
votes
1answer
18 views
Why does chrome.runtime.sendMessage result in my callback being called twice when there's an error?
I have the following code in my background script. I send a message to another app, but if it fails, this gets called twice (note: my callback is called twice. My code calling sendMessage is only ...
0
votes
2answers
33 views
How to test google chrome workspaces on linux?
I saw this two videos
http://www.youtube.com/watch?v=kVSo4buDAEE
http://www.youtube.com/watch?v=x6qe_kVaBpg
and I wanted to try google workspaces on my linux desktop
I followed these instructions: ...
1
vote
1answer
22 views
How to inject javascript into Chrome DevTools itself
Ok, so just the other day I learned that you can inspect the devtools if it is in its own window(explained here). I also learned that you can style the devtools with your own css by editing the ...
0
votes
0answers
18 views
Chrome Developer Tools not creating inspector stylesheet when adding CSS
I have a problem which sometimes happens and other times not. I use Chrome Developer Tools to edit CSS in the browser before applying it through the CMS of a site.
Typically when I click on New Style ...
0
votes
0answers
14 views
Is there a way in Chrome console to search for strings in console outputs, even those collapsed?
I don't want to just filter the console outputs, but search for string in it (showing or collapsed) as well. Is it possible?
CTRL+F cannot search inside collapsed outputs. For example, if the output ...
0
votes
1answer
50 views
How to auto-reload css upone sass safe on Chrome dev tools
I think I did everything right. I trying to set up the mapping feature in Chrome canary. I followed the screenshots in this answer.
The main feature works, when I inspect an element, it points me to ...
0
votes
1answer
9 views
Why can I change HTMLMediaElement.prototype.play from console, but not via user script?
If I open the Chrome developer tools console and change HTMLMediaElement.prototype.play, it works just fine.
> HTMLMediaElement.prototype.play = function(){debugger;}
function (){debugger;}
> ...
0
votes
1answer
15 views
Access console functions when overwritten? [duplicate]
This might be a silly question, but might there be a way to access the console's built-in functions, like `console.dir', when the javascript on the currently loaded page has overwritten them? Maybe ...
0
votes
1answer
18 views
Chrome slow, accessing Local Storage\chrome-extension_randomname
Whenever my Google Chrome comes to a screeching halt pause, I notice in Resource Monitor that there's a heck of a lot of file I/O on a file named c:\Users\username\Appdata\local\google\chrome\user ...
0
votes
1answer
33 views
Inspect Element can change anything, and its ok?
I found it handy to style my webpages with google chrome by changing css values via 'inspect element'.
A lot of you may already know this but I just recently found out that I can also edit the whole ...
0
votes
0answers
41 views
Check if Music is playing in chrome
I'm attempting to build a chrome extension.
How can I check if headphones are plugged in and/or if music is playing in the system (or, if that's not possible, at least the browser)? Is there a way ...
0
votes
1answer
29 views
Creating a browser action button to open chrome developer tools
I have a chrome extension I am working on, which lives in a devtools panel (http://developer.chrome.com/extensions/devtools.panels.html).
I want to add a button to quickly open up my extension. I ...
0
votes
1answer
35 views
Debugging in-page javascript with Chrome when the html is minified?
The scripts on our website are embedded in the html and everything is minified. Throwing a debugger statement into the javascript to debug doesn't help very much because there's only actually one line ...
0
votes
0answers
43 views
How can I determine which element's attribute needs to be modified?
I am trying to visually clean up the appearance of a legacy asp.net page; it seems that something has a border-left and border-right property that I need to get rid of, but I can't determine which ...
0
votes
0answers
19 views
Google Chrome / Chromium how get system fonts?
I would like to know how the browser gets the system fonts without using flash or java.
Thanks
0
votes
1answer
32 views
Troubleshooting browser source maps
Source maps are very helpful for debugging minimized scripts or translated languages (ex. CoffeeScript) but the browser gives you very little output to troubleshoot why your mapping doesn't work. Does ...
0
votes
1answer
68 views
Change the Chrome extension icon
I'm new to Google Chrome extensions and I've created one for our website that checks the content of the page you're on and bases on that gets the ID of the server (we have a webfarm with 4 VM's). Now ...
0
votes
0answers
12 views
Edit inline and embed javascript within HTML files in Chrome Debugger
I have some javscript in a script tag inside an html page. I just read a Sitepoint article that explains that html files cannot be edited (like we do while debugging js files)
I have a few options ...
8
votes
2answers
141 views
Javascript Memory Leaks: Detached DOM tree
I have noticed that the memory of the browser starts increasing whilst I am in a form (this is noticeable from the task manager). In IE 9, this goes easily over 500MB after some usage, whilst chrome ...
4
votes
2answers
70 views
Developing web applications without a mouse [closed]
I am trying to find the best way to debug a single page application with lots of ajax and javascript without using a mouse. What I have noticed is that I spend most of my time clicking on the panels ...
0
votes
1answer
36 views
How to detect in Chrome either the javascript is executed from a document/ from extension or from javascript console?
How to detect in Chrome if the javascript is executed from the Chrome DevTools Javascript console?
Smth. like:
if(...) {
alert('from document')
} else if (...) {
alert('from console')
} else ...
0
votes
1answer
49 views
how to disable javascript in chrome by code
we kown that chrome provide us the method to disable js in web developer Panel.
but i want to disable js from chrome extension by the interface if chrome provide
if chrome dont allow developer do this ...
0
votes
2answers
23 views
How to disable Google Chrome source compression “?body=1”?
I'm trying to debug some JavaScript for a Rails project and its incredibly frustrating to go line by line when the source code is compressed in the Sources developer tab.
I know this compression is ...
0
votes
2answers
25 views
Chrome - disable all styles from specific .css file
When inspecting a web site, is it possible to disable a particular .css file? I can do it in FireFox but can't find the option in Chrome.
1
vote
0answers
35 views
Unexplained growth in chrome private memory
I am in the process of profiling a javascript library I wrote, looking for memory leaks. The library provides an API and service to a back-end. It does not do any html or dom manipulation. It does ...
0
votes
0answers
19 views
Event Listeners Chrome Dev Tools - extend jQuery - why do even listeners point to library instead of customized/extended script?
Beginner / Intermediate developer here and trying to get a grasp on tracking down event listeners, but finding myself confused and frustrated because it always point to the library that handles the ...
0
votes
1answer
32 views
How to use console.log() to debug a Chrome extension?
I'm trying to debug my Chrome extension using
console.log("message");
My extension works fine (for the most part), I'm clicking buttons that call function which perform something. Every function as ...
0
votes
0answers
17 views
Running unpacked chrome extensions with chrome.extension.sendRequest
While I understand chrome.extension.sendRequest was superseded by chrome.extension.sendMessage , I have some old code which uses it and I wish to run it without making any changes.
While the standard ...
0
votes
1answer
12 views
Is it possible to get access to Chrome's DevTools Console output in the “main web page”
I am using the Chrome's DevTools console to debug a webpage. Is there a way to pipe what is being outputted in the console, back up to the main webpage?
3
votes
2answers
60 views
Finding an infinite (or very large) loop in JavaScript using Chrome Dev Tools
I'm using a third party statistics library which seems to have loads of issues. It's both large and compressed, so it's not particularly easy to debug. I'm using the Chrome Dev Tools and I was ...

