chrome disable security messed chrome functioning - google-chrome

google image
Hi, stackoverflow, i am trying to debug a react native app on a Mac and when i open chrome in disabled security mode, the data rendered by google chrome is not normal.
google resultas are not shown, and the design of chrome get messed (the image above)
this is the command : open /Applications/Google\ Chrome.app --args --disable-web-security --user-data-dir

You are probably using Chrome 67.
This problem has been fixed in the last Canary, so you can:
wait for the next Chrome
use an old version (e.g. install Chromium 66)
or you can:
Add the --disable-site-isolation-trials argument to chrome via https://docs.cypress.io/api/plugins/browser-launch-api.html#Usage
Reference: https://github.com/cypress-io/cypress/issues/1951#issuecomment-401579981

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.

Google Chrome Version 83.0.4103.97 failed to access/open camera on windows 10

I am using Google Version 83.0.4103.97 (Official Build) (64-bit), whenever i am trying to access camera (USB2.0 HB UVC Webcam (04f2:b57a)) on google meet not able to open/access in google chrome. I tried with firefox browser thats work fine there. I have already uninstall and reinstall google chrome but no luck. How to fix this problem.
You can find a solution here
Add a command-line switch (CLS) to the desktop shortcut of Chrome:
Completely close Chrome (see bottom)
right-click the desktop icon of Chrome
click 'properties'
insert the CLS at the right end of the target field (also copy the leading space):
--enable-features=RunVideoCaptureServiceInBrowserProcess
click the "OK" button
​How to close Chrome completely:
close all windows of Chrome
open the Windows Task Manager [ctrl + shift + esc]
if you see any open Chrome processes (chrome.exe), end them
I fixed the problem degraded google chrome version 83.0.4103.97 to 81.0.4044.92. And download the older version from here

Postman not working after updating Chrome

When I start Postman I see the icon appear in the Dock and in the Force Quit window, and I can click on the icon in the dock and Postman appears in the menu bar, with the single option "Quit Postman." So it's running, but the window doesn't appear. This morning I upgraded Chrome to 55.0.2883.95, Chromium to 58.0.2991.0, and Chrome Canary is at 58.0.2990.0.
Is there a way to switch Postman from Chrome to Chromium or Chrome Canary (i.e., to test Postman with different builds)? Or to revert Chrome to any older build? Or any other ideas to get Postman working?
The chrome addon for Postman will be depricated soon.
There are now fully functional standalone apps for Windows/Mac/Linux here. They work just as well as the Chrome addon and even have some additional features. I would suggest moving to the standalone apps.
In Chrome I googled "Postman," which took me to the Chrome App store, and the Postman page has a green button for "Launch App Now." That worked!
try disable and then enable the extension.
It worked for me.
Sometimes google chrome doesn't load it properly.
I had a nearly similar problem, where Chrome postman app (extension) fails to post/get/etc. It was unable to access the internet for some reason. After trying many solutions, it seems that the javascript setting in Chrome was causing it. You need to enable javascript in Chrome, restart Chrome, then the postman app will work.

--disable-web-security flag deprecated in Chrome 35.0.1916.114 m?

The flag --disable-web-security that i used to allow cross domain request from local page seems doesn't work in Chrome version 35.0.1916.114 m?
Could you confirm ?
I am using chrome stable 35.0.1916.153 m and --disable-web-security works for me.
If you are unable to use it, follow these steps (reposting my similar answer):
Kill chome from task Manager First. In Windows - Right Click (or Shift+right click, incase of taskbar) on Chrome Icon. Select Properties. In "Target" textbox, add --disable-web-security flag.
So text in textbox should look like
"C:\Users\njadhav\AppData\Local\Google\Chrome SxS\Application\chrome.exe" --disable-web-security
Click Ok and launch chrome.

Unable to use Chrome Experimental Devtools API

I'm trying to use the Chrome Experimental Devtools API.
I've tried running Chrome with: --enable-experimental-extension-apis as suggested here: http://developer.chrome.com/extensions/experimental.html and enabled the "Experimental Extension APIs" in the flags settings.
When I open the Console in Chrome (or Canary), I get the following:
chrome.devtools: undefined
chrome.experimental: undefined
I'm running Chrome 21.0.1180.77 beta-m. I've also tried Canary.
What am I missing?
As explained here: http://developer.chrome.com/extensions/devtools.html, the chrome.devtools APIs are only available in your devtools HTML page.
First, you need to create an HTML file and then add it to your extension's manifest under the "devtools_page" key. When you load your extension into Chrome and open the DevTools, you should see your new tab.
In that tab is the only place chrome.devtools will work.
chrome.experimental is different and will be available in all of your background pages and content scripts.
You need to run it only in Canary.
Plus when you run chrome add this flag to the command line:
path_to_chrome.exe --enable-experimental-extension-apis