how to re-open google chrome's developer mode 's message remind? - google-chrome

the system is WIN10, when I open the chrome's developer mode , a little while,there comes out a message ,similarly like this :"we have chinese version" , I want to look for details, but unfortunately I click " Do not show this again".
The position is this picture's red character's position.
this is the picture
So I want to know how to get this message again, and where to setup the reminder?
Thank you so much!
Regards!

Reset Chrome settings to default
On your computer, open Chrome.
At the top right, click More Settings. Advanced. On Chromebook, Linux, and Mac: Click Reset settings Restore settings to their original defaults. Reset settings. On Windows: Click Reset and cleanup Reset settings to their original defaults. Reset settings.
This usually works for me :) let me know how it goes

Not sure what exact message are you referring to, but you can configure much of aspects of developer console via settings (Shift + ? on my computer or clicking on cog icon in top right corner)
There is also Restore defaults and reload button which should get rid of anything you overridden before:

Related

Google Chrome disable window animations

After updating to Chrome 58 I noticed a new "zoom-fade" effect when restoring a minimized window, or opening a new window (Ctrl+N). This feels very unnecessary, and - in my desktop environment - totally out of place.
Is there a way to permanently disable all window animation effects?
You can disable the animation by adding the --wm-window-animations-disabled command-line flag.
For Linux/Ubuntu you can make this permanent by editing the Chrome shortcut at /usr/share/applications/google-chrome.desktop. There are 3 Exec= lines where you will need to add --wm-window-animations-disabled immediately after the executable name.
If you find that this is no longer working, re-check your shortcuts as some Chrome updates (via a package manager) could have overwritten the shortcut(s), so you may need to re-edit them.
There's easy way to get rid of those animations everywhere & permanently under Linux.
Here's an example for Ubuntu:
sudo nano /etc/chromium-browser/customizations/dis_wm-window-anim
(on Debian its /etc/chromium.d/dis_wm-window-anim)
then
CHROMIUM_FLAGS="${CHROMIUM_FLAGS} --wm-window-animations-disabled"
Ctrl+x -> y -> "enter"
go to developer tools and then click top right menu click More tools and then click Animation
in top and left of Animation Tab you can see play and pause button by click on it you can stop and play animation

Can't find the overrides or emulation tabs in chrome 2016?

I'm trying to view the emulation panel but I can't find it anywhere. Everywhere I've looked it says to open an overrides panel to find it but that's missing too. I also can't find any helpful or new answers to my question. Pressing esc only opens up console and there's nothing in settings that seems to help. Can someone please tell me how to reach it?
Instead of emulation in the drawer Device Mode is now offered for emulating other devices. It provides many benefits over the old emulation mode, such as taking into account the meta viewport tag on render. So what you see is much closer to what you'd get in real life.
I'm using 51.0.2704.103 (64-bit) on a Mac.
Cmd-Opt-i to open console.
Click the button with three vertical dots and the very top right of the Developer Tools window.
Select: more tools > sensors:
If the console draw is not already open it will open. Either way there should now be a sensors tab next to the console tab on the console draw. Click this tab and follow your nose from there.
Note that this tab had an x by it. Hitting this will hide the sensors tab and next time you use it you will need to follow the steps above again to reinstate it.

How do I set the default position for chrome developer tools in incognito

When I open an new incognito window and open the developer tools its always docked to the bottom :S
Is there any way I can set the default dock to the right? Or is there some hotkey I can use to change the dock position?
The chromium ticket today was marked as won't fix https://code.google.com/p/chromium/issues/detail?id=376788
So it is very unlikely we will get this behavior. Personally I hate the default behavior being dock to right.
The original argument for it being changed to dock to right was because lots of people were upvoting these questions about how to dock it to right.
Chrome >=24 - how to dock devtools to the right?
How to reposition chrome developer tools
Maybe if we get enough people to upvote how to make it go back to the bottom they will change it back :)
EDIT: On second thought it looks like it is now picking up some traction, and they are working on implementing this. See comment https://code.google.com/p/chromium/issues/detail?id=376788#c45
EDIT #2: Chrome 44 was just released and now the position is carried over when you open a new incognito window
When the dev tools open right next to the x to close them you see the option to undock it and open it in a separate window... if you click and hold it, it will show you an option to dock it in the right panel.
Also, as a note... this is not specific to incognito.
There used to be a setting in the inspector settings (you can open them by pressing "?" while the inspector is open), but it was removed in favor of "position priorities", these being:
Right Dock
Bottom Dock
Undock
If you change its position it is persistent as long as you have a session, this means the position won't be remembered in incognito.
EDIT: Also, you can long-press the dock selection button (top right corner of the inspector) to select directly an option.
Discussion about it.

Auto-scrolling Chrome's DevTools console

Since its inception few years back, Chrome has become a de-facto IDE for web development. I've been using it's Canary(Version 28.0.1464.0) channel for quite a bit and been happy as a clam.
Only issue that keeps bothering me is the lack of ability to have the DevTools console pane, auto scroll to the last message added. I understand that many folks would prefer to have the current behavior. However I was wondering: Does anyone knows how (if even possible with the current release) to flip the switch and have the console auto-scroll?
Thanks.
Clearing the console and scrolling the bar down to the bottom didn't work for me.
The problem was that I had zoomed out DevTools.
Solution:
Focus the DevTools, e.g. by clicking on the console's > prompt
Hit Ctrl-0 (zero) on Windows, or Cmd-0 (zero) on OS X, to restore the default font-size
Hopefully then auto-scroll to bottom will start working again!
Thanks to this guy for pointing it out:
http://code.google.com/p/chromium/issues/detail?id=161646#c5
One Reason why it's happening:
Logging of HTML elements into the console makes the console view lose the last console message.
How to solve it:
Instead of doing something like this:
console.log("Some logging message:", html_element)
try this (wrapped the messages with brackets)
console.log(["Some logging message:", html_element])
It drove me crazy too and I found the solution here:
Google Chrome follow developer console logging
With the console open, drag the scroll bar down to the bottom of the
window and release it. It should tail the output for you.
It does not matter if you have the console docked or not.
Working for me on a osx 10.8.5 and chrome 31
In Chrome version 29.0.1547.76 m, it auto-scrolls when you undock the console. It stops auto-scrolling if you click on the console, then you'll have to clear the console before auto-scroll will be ready to start again.
The "Undock into separate window." button is the bottom-left most button of the console.
For me I've noticed that the autoscroll stopped when the console showed a warning so I've filtered out the warnings and all is good:
For me the only solution that worked was:
click F1 (settings)
At the bottom restore defaults and reload.
None of the above worked.
I found this solution in Chrome 49+
Go Dev-tools/ Settings /
"Console tab"
x Preserve log upon navigation.
Done!

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.
[update]
The feature request is closed (Dec 2011)!
This is now possible in Sources tab of Chrome Developer Tools.
Please see screen grab below and right click within the "Breakpoints" section of the left window.
Since recently (Chrome 18), you can right-click any breakpoint in the Breakpoints pane and voila! The "Remove All JavaScript Breakpoints" popup menu item!
Chrome Devtools crashed everytime I tried to access the Sources panel because of a breakpoint on a minified Javascript file.
To remove all breakpoints without access to the interface, you can do the following:
Open inspector-on-inspector : undock first inspector and hit ctrl+shift+i to open the second
On the inspector-on-inspector console, execute the following:
window.localStorage.breakpoints = [];
Close the inspectors and reload the page. Now the breakpoints are gone.
Under Sources, you can click button marked with red on picture below or use shortcut Ctrl + F8 just like tool tip is showing (activate / deactivate breakpoints). A little bit lower under 'Breakpoints' you will see all your breakpoints. If you choose to disable all, they will be grayed out.
solution here.
To purge all breakpoints open inspector on inspector (undock first
inspector and hit ctrl-shift-I to open the second) and run
"WebInspector.settings.domBreakpoints.set([])" in second inspector's
console.
new Tabs; Ctrl+Shift+J to Console; Access URL
Open the Chrome task manager and end the tab page.
Ctrl+Shift+J to Application -> Service Workers (Offiline) -> Refresh
to Sources Cancel Breakpoint
Success
Another option is to de-activate all break points using:
Ctrl + F8
In my case Uninstall and new installation of Chrome was without any success.
Also window.localStorage.clear() did not help.
My "last chance solution" is to remove entire directory where Chrome is storing its data.
First turn off your Chrome.
Then look at this path "c:\Users\ {your_user} \AppData\Local\Google\Chrome\User Data\Default\Local Storage\". Here try to delete all what is in this directory.
You can also clear all inspector settings and reload the inspector. It helped me with fantom breakpoint I could not remove in any other way. Open inspector and go to Preferences -> Sync -> Restore defaults and reload (at the bottom).
Step 1: Go to Developer tools and expand Breakpoint section
Step 2: Right click on expanded area of breakpint and there will be many options lik