chrome console popups automatically when changing and creating new tabs? - google-chrome

I am really getting irritated,chrome console popups automatically each time I create new tab or change tabs.I don't want to uninstall chrome to lose all my important browsing history and bookmarks.Further,I also tried uninstalling and installing chrome before.After fresh install this problem appears after some time.What to do?

I just checked Developer Mode on top of extensions on setting and it stopped.Now everything is fine.

Related

Remove All Chrome Extensions While Reinstalling Google-Chrome

Recently, I have installed an annoying chrome extension (http://www.buntai.com/). Thanks to this extension, every time I open a new window in google chrome, it will minimize immediately, which made me not able to use chrome anymore.
Therefore, I tried to reinstall google chrome in order to get rid of the google chrome extension(I cannot remove it directly in chrome://extensions/ because I cannot open that page using chrome.)
However, it did not work. When I reinstalled google chrome, the extension was still there.
I am not sure why reinstalling chrome would not remove the extensions and I would like to know if there is another approach to remove the chrome extensions.

chrome developer tools does not display?

I'm using Version 80.0.3987.116 (Official Build) (64-bit) on Microsoft Windows [Version 10.0.17134.1304]. The Chrome Developer Tools simply do not appear for me no matter which way I try to access them:
ctrl+shift+i
f12
ctrl+shift+j to open the last used panel
ctrl+shift+c to open the elements panel
right click on a web page and select inspect from the popup
menu dots menu -> more tools ->
developer tools
I've restarted my computer. I've gone into settings -> advanced settings and restored all settings to their original defaults, then restarted chrome. This disables all extensions, so even with all extensions disabled it still didn't display. I've cleared the cache.
It was all working last Friday, but not when I tried Monday.
Has anyone seen this or have any other troubleshooting ideas? The only other thing I can think of is uninstall with something like Revo Uninstaller to scrape the registry and filesystem, then in my profile zip up then delete %userprofile%\AppData\Local\Google and %userprofile%\AppData\Roaming\Google. That seems extreme if there's an easier way.
Anyone seen anything similar?
Thanks!
I feel stupid figuring this out so quickly after posting the question. But if anyone else finds this, here's what worked for me.
ctrl+t to open a new tab
enter chrome://flags/ in the address bar
click reset all to default
let chrome restart
I'm not sure which flag was set that caused this. When I searched for devtools, there were three available settings, and they were all set to either disabled or default. And that's what they were after I did a reset all too. So whatever broke it was some other setting.

Chrome extension added but not in extensions list

I created and uploaded a Gmail extension to the Chrome Store and have been trying to test it. I deleted it from my extensions list in Chrome and when I went to go re-download it from the Web Store it said "Added to Chrome" and would not let me re-download it. I found a few solutions that described how to delete cached data on a PC, but I'm using a Mac. Any ideas?
I'm a total newbie at this so any help would be appreciated. Also not a very strong Mac user. Thanks!
Try to restart your Chrome browser, if the extension still not exist, reset the chrome settings to default, you need to do this if apps or extensions you installed changed your settings without your knowledge. Your saved bookmarks and passwords won't be cleared or changed.
Open Chrome.
In the top right, click the icon menu
Click Settings.
At the bottom, click Show advanced settings.
Under the section "Reset settings,” click Reset settings.
In the box that appears, click Reset. ​

Unable to find Google Chrome DevTools of Overrides to show Emulator tab

I'm using Google Chrome Version 49.0.2623.87 (64-bit) on OSX 10.10.5 (14F1605). Tried to find Overrides tab to show Emulator. I had also tried after cleaning all user data from PC & installed a newly downloaded Chrome dmg package, but no luck. Is there any reason to hide Overrides or Emulator tab. Attached image for reference.
This is so the drawer panels are able to be kept minimal to what a developer needs to be there. More can also be added later without necessarily adding more panels in the way for everyone. Just toggle what you need and be happy.

Re-enable WebGL without restarting Chrome

When Chrome stops WebGL and gives you the following error (in a yellow banner on top of the screen): "Rats! WebGL hit a snag...", and reloading does not work (WebGL is still not re-enabled), is it possible to re-enable WebGL without restarting Chrome?
Context:
Chrome disables WebGL probably because it requires too many resources: I ask it to display 400,000 billboards on Cesium, for those who know what this is.
I know how I could reduce the resources my app asks for, but actually I am exploring its limits for testing purposes. So I am going to make Chrome disable WebGL a lot of times, and I do not want to restart it everytime it disables WebGL.
My configuration:
Chrome 35.0.1916.114 m
Windows 7 Pro 64 bit.
Solutions explored:
I already tried to open a new Chrome window, it does not work. For the moment all I can do is close all Chrome windows and restart it.
I already tried to put --ignore-gpu-blacklist in the Chrome shortcut (even if I understood this is for Windows XP, right?).
Hope I was clear enough.
Thank you for your help.
I was having the same problem and I just found a solution. It sounds like this didn't work back when this question was posted but, it works now!
Refreshing the page doesn't work. If you clicked a link from a different tab to open the tab the crashed, clicking that link again doesn't work. You have to open a new tab and paste in the URL of the page that you want to reload.
I'm guessing this is due to chrome threading... by opening a brand new tab, you create a new thread instead of using the existing one.
In your application you should properly handle webglcontextlost and webglcontextrestored events. In particular, you should prevent default event action in webglcontextlost handler thus telling the browser that you can restore proper functioning of your app when webglcontextrestored will be fired.