谷歌翻译退出中国后该如何恢复chrome翻译的正常使用? | 芊芊精典-m6米乐app登录

资源分享评论6.9k

下面是获取可用 ip 地址以及修改 windows 系统和 macos 系统 hosts 文件的自动化脚本代码:

只需一键即可完成所有修改步骤。

脚本托管在 github gist 上,你也可以通过以下链接直接下载到本地使用。

把代码保存为bat’文件,最后以管理员身份运行脚本即可完成!

:: m6米乐app登录 copyright (c)2022 https://bookfere.com
:: this is a batch script for fixing google translate and making it available
:: in the chinese mainland. if you experience any problem, visit the page below:
:: https://bookfere.com/post/1020.html
@echo off
setlocal enabledelayedexpansion
chcp 437 >null
set "source_domain=google.cn"
set "target_domain=translate.googleapis.com"
set "hosts_file=c:\windows\system32\drivers\etc\hosts"
for /f "skip=4 tokens=2" %%a in ('"nslookup %source_domain% 2>nul"') do set ip=%%a
set "old_rule=null"
set "new_rule=%ip% %target_domain%"
set "comment=# fix google translate cn"
for /f "tokens=*" %%i in ('type %hosts_file%') do (
    set "line=%%i"
    :: retrieve the rule if the target domain exists.
    if not "!line:%target_domain%=!"=="%%i" set "old_rule=%%i"
)
if not "%old_rule%"=="null" (
    echo a rule has been added to the hosts file. 
    echo [1] update [2] delete
    set /p action="enter a number to choose an action: "
    if "!action!"=="1" (
        if not "%old_rule%"=="%new_rule%" (
            echo deleting the rule "%old_rule%"
            echo adding the rule "%new_rule%"
            set "new_line=false"
            for /f "tokens=*" %%i in ('type %hosts_file% ^| find /v /n "" ^& break ^> %hosts_file%') do (
                set "rule=%%i"
                set "rule=!rule:*]=!"
                if "%old_rule%"=="!rule!" set "rule=%new_rule%"
                if "!new_line!"=="true" >>%hosts_file% echo.
                >>%hosts_file%  "%hosts_file%"
        ') do (
            set "line=%%i"
            set "line=!line:*]=!"
            if "!new_line!"=="true" >>%hosts_file% echo.
            >>%hosts_file% >%hosts_file%
    echo %comment%>>%hosts_file%
    >%hosts_file%
)
echo done.
pause

 

如果你用的是 macos 系统

打开“终端”,拷贝以下命令并将其粘贴到终端上,按回车,输入你的系统密码,再按回车。注意,输入密码时是不显示任何信息的,只要确保输入的密码是正确的就可以。

sudo bash -c "$(curl -skl https://fere.link/ow3cld)"

如果看到如下所示提示,表示规则添加成功,也就可以正常使用 chrome 的谷歌翻译功能了。

adding the rule "142.250.70.195 translate.googleapis.com"
done.

* 提示:终端打开的方式为,打开“访达(finder)”,在左侧边栏找到并进入“应用程序(applications)”文件夹,在里面找到并进入“实用工具(utilities)”文件夹,在这里面就可以找到“终端(terminal)”,双击打开。

​* 注意:​由于代码是托管在 github 的,因此在请求 url 的时候可能会遇到网络不通畅的情况,如果运行命令后长时间没反应,建议按 ctrl c 中止运行,​然后再重新运行一遍上面的命令,一般最多尝试两三次。

此命令可以重复使用。添加规则后再次使用时会出现交互提示信息,输入 1 会尝试更新已添加规则的 ip 地址,如果没有变化则不做任何修改,输入 2 会删除已添加的规则。

github 开源项目地址:


软件介绍 2022年10月份,google翻译api被误伤,官方干脆直接停用了。虽然网页翻译给停用了,但是api并没有停,稍...
72002
芊芊精典-myqqjd.com-搜索芊芊精典
评论  0  访客  0

发表评论