在 OS X 上更改 Google Chrome 缓存大小

Are*_*rte 8 google-chrome browser-cache macos

如何更改 Google Chrome 使用的缓存大小?在 OS X 上?我发现了无数帖子如何在 Windows 上做事,但无法真正弄清楚如何在 os x 上做事。

帮助将不胜感激,谢谢。

dem*_*ure 3

您必须使用以下标志从命令行启动它--disk-cache-size=524288000,其中524288000是可以设置的上限。
您可以尝试制作一个脚本来通过增强来启动它。

就像是:

#!/bin/sh

/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --disk-cache-size=524288000 &
Run Code Online (Sandbox Code Playgroud)

然后用.sh扩展名命名它,然后chmod u+x /path/to/file.sh你就可以了。