Last active
June 28, 2025 00:49
-
-
Save FerraBraiZ/22335146a814b6309fab0a8d6cf9683c to your computer and use it in GitHub Desktop.
Desabilitar o CORS ( --disable-web-security ) no Linux e Windows no Google Chrome ou Chromium para fins de teste.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
no Linux abra um terminal ( shell ): | |
google-chrome --disable-web-security --user-data-dir="/tmp/" | |
chromium-browser --disable-web-security --user-data-dir="/tmp/" | |
no Windows abra um terminal ( shell ) | |
C:\Program Files (x86)\Google\Chrome\Application\chrome.exe --disable-web-security --user-data-dir="c:/tmp" | |
Alternativamente vc pode instalar a seguinte extensão do chrome que desabilita o CORS | |
https://chrome.google.com/webstore/detail/moesif-origin-cors-change/digfbfaphojjndkpccljibejjbppifbc?hl=pt-BR |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Também agradeço, posso fazer testes no Linux agora ;)