如何使用脚本批量将谷歌block-insecure-private-network-requests设置为disable
时间: 2023-07-16 11:16:29 浏览: 260
详解HTTP Upgrade-Insecure-Requests
您可以使用以下脚本将谷歌浏览器的block-insecure-private-network-requests设置为disable:
```bash
#!/bin/bash
# 获取Chrome浏览器的安装路径
CHROME_PATH=$(which google-chrome-stable)
# 判断Chrome浏览器是否已经安装
if [ -z "$CHROME_PATH" ]; then
echo "Chrome浏览器未安装!"
exit 1
fi
# 获取Chrome浏览器的配置文件路径
PROFILE_PATH=$(ls -d ~/.config/google-chrome*)
# 判断Chrome浏览器的配置文件路径是否存在
if [ -z "$PROFILE_PATH" ]; then
echo "Chrome浏览器的配置文件路径不存在!"
exit 1
fi
# 将block-insecure-private-network-requests设置为disable
sed -i 's/"block_insecure_private_network_requests":true/"block_insecure_private_network_requests":false/' "$PROFILE_PATH/Preferences"
# 重启Chrome浏览器
pkill google-chrome-stable
google-chrome-stable &
```
执行以上脚本后,Chrome浏览器的block-insecure-private-network-requests将被禁用。请注意,您需要在Chrome浏览器中重新启动才能使更改生效。
阅读全文