打开Chrome的URL,而不经由命令行使用该缓存(Open an url in Chrome wi

2019-09-22 18:56发布

我用命令chrome --new-window htp://www.example.com/打开一个网址,但该页面使用上次保存在缓存中打开。

有没有办法打开命令行强制装载忽略缓存网址?

谢谢!

Answer 1:

试试下面的命令:

/usr/bin/google-chrome-stable --new-window --aggressive-cache-discard --disable-notifications --disable-remote-fonts --disable-reading-from-canvas --disable-remote-playback-api --disable-shared-workers --disable-voice-input --enable-aggressive-domstorage-flushing https://stackoverflow.com/questions/12544664/open-an-url-in-chrome-without-using-the-cache-via-command-line#12545236 %U &

这对我的作品在Chrome版本54.0.2840.100(64位)的Linux Mint的钱啊

但它不会登录我出任何网站,除非我先退出浏览器。



Answer 2:

添加开关--disable-application-cache应该工作。 开始它改名( --incognito )也可能会奏效。 另请参见这里更多的命令行开关。



文章来源: Open an url in Chrome without using the cache via command line