google-chrome-devtools

Chrome DevTools | Scrolling issues in preview pane when rendering into HTML

拟墨画扇 提交于 2019-12-06 03:04:19
问题 In the Network panel of the Chrome DevTools, with the filter request type set to All/XHR, under the Preview pane scrollbar (both Vertical & Horizontal bar) doesn't rolls In order to overcome the above situations, I have followed these two approaches they are as follows: Since both the approaches follows the same as, undocking the DevTools into a separate window and then hitting F12 or pressing CTRL + SHIFT + I to inspect inside the DevTools — Inspect-in-Inspect (i.e., nested inspects) First

Communicating between Chrome DevTools and content script in extension

一曲冷凌霜 提交于 2019-12-06 03:02:36
问题 (I have already read this and it didn't work, and I've done a lot of searching and experimentation to no avail.) I am writing a Chrome extension (BigConsole) with the goal of building a better Console tab for the Chrome developer tools. This means I would like to execute user-inputted code in the context of the page with access to the DOM and other variables on the page. To do this, the communication is structured as follows: devtools creates a panel where the user writes code When the user

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

时间秒杀一切 提交于 2019-12-06 02:44:37
问题 More Info/Update I packaged and installed google's own sample app showing filesystem access and it also does not show the checkbox! You can find it here: https://github.com/GoogleChrome/chrome-app-samples/tree/master/filesystem-access Original Post 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 only shows: "Write to files that you have opened

Chrome Dev Tools and Genymotion Android Emulator

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-06 02:23:53
问题 Reference: Genymotion how to debug with Chrome Dev Tools I'm also trying to get chrome developer tools to work with a genymotion emulator. However, when I follow all of the steps recommended (including at the above link), I don't get the "inspect" link. See: http://neu14.com/demos/screenshot.png Note: I found out that the default browser on the android devices, at least on most of the prior os versions is not Chrome. Finding an apk to download for Chrome android compatible versions, without

chrome request pending for long time

流过昼夜 提交于 2019-12-06 01:41:19
问题 When testing my web app on Chrome, I notice one request take way too long time to load (sometimes 20 seconds). According to heroku log at=info method=GET path="/1/message_feeds?competition_id=xxx" host=xxx.xxxxxxx.com request_id=0e521307-ea37-41c8-9aaa-cebec40fe106 fwd="80.216.26.9" dyno=web.3 connect=0ms service=184ms status=200 bytes=11738 It indicates the the request is served by server for 184ms; I also checked request timing from chrome dev tool, it shows the complete request time is

Google Chrome Extension Crashes When Installed From Webstore - Need To Identify Cause of Crash

对着背影说爱祢 提交于 2019-12-06 01:13:12
I have a google chrome extension that crashes after you install it from the webstore. When installed from a local copy the extension does not crash. The crash happens when you click the tool bar icon that is added once it has been installed. The icon is supposed to load a table with URLs. Once restarted all you get is the option to recover tabs. I was hoping someone could help identify the issue of the crash or tell me how to access a crash report to see what is causing the problem. The extension is located here: Chrome Store App Any help or direction will be very appreciated. Thank you I've

Chrome Addressbar invisible

风格不统一 提交于 2019-12-05 22:58:24
问题 Recently i found out that after resizing my chrome browser during testing with the inspector open, my address / URL bar disappears unfindable. although while opening a new tab i can enter URLs normally since the url bar gets autofocused, but the bar is still invisible. Does anybody know why this happens or how to disable this feature / bug . Has anybody else seen this before, or is it just me? Help appreciated, thx 回答1: I've had the same issue as of late. While I have not found a solution in

Chrome inspector console does not work with version 54.0.2840.99

落爺英雄遲暮 提交于 2019-12-05 22:25:05
I use node-inspector to debug JS with Chrome version 54.0.2840.99. I enter "node-inspector" in one windows cmd console and "node --debug-brk l:\dev\debug\test.js" in another windows cmd console. Open "http://127.0.0.1:8080/?ws=127.0.0.1:8080&port=5858" in Chrome. It's able to debug as usual. But I input "1 + 2" in Chrome console, press "Enter" , nothing happen. I would expect "3" is output to Chrome console. It did work with Chrome version 48.0.2564.116. I did not test with other Chrome versions. Is it a defect of the new Chrome versions? How to resolve the problem? I captured the pictures as

How to dock chrome developer console on the LEFT?

谁说胖子不能爱 提交于 2019-12-05 20:58:14
问题 I'm aware you can click the vertical ellipsis button ( ⋮ ) and then choose to dock on the bottom, right or detach. But does anyone know how to dock on the left? Currently I have to detach and then manually resize and adjust, which is annoying. Edit: I'll just leave this question open until someone either convinces Google to add left docking, or someone figures out a hack/finds or builds an extension to get it to work. Edit 2: Issue solved. Google just added this in latest standard Chrome

Chrome: this extension loaded itself too frequently

陌路散爱 提交于 2019-12-05 19:35:35
I’m building a custom Chrome extension. Sporadically my extension shows this message. This extension loaded itself too frequently What does this mean? Maybe I’m exceeding some threshold which disables the extension? You've called chrome.runtime.reload too often. Chrome considers a reload a "fast reload" when you call chrome.runtime.reload within ten seconds after loading the extension. When your extension triggers more than five "fast reloads", then the following warning will be shown in the UI: This extension reloaded itself too frequently. 来源: https://stackoverflow.com/questions/29086691