0%

在禁用 CORS 的情况下运行 Chrome

有时候如果只是简单测试一些东西,不想配置跨域的话,可以尝试一下禁用 CORS。

Windows 10

1
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --disable-web-security --disable-gpu --user-data-dir=~/chromeTemp

OSX

1
open -n -a /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --args --user-data-dir="/tmp/chrome_dev_test" --disable-web-security

Linux

1
google-chrome --disable-web-security

如果需要访问本地文件,加上 -–allow-file-access-from-files 标志。