我们根据网上的教程在ubuntu16.04中安装下载工具uget+aria2并配置chrome时,最后重新打开chrome浏览器,发现uget扩展程序是红色的,点开看到”Unable to connect with uget-integrator“问题
原因:
缺少uget-integrator,出错在设置uGet为chrome的默认下载插件
1 sudo add-apt-repository ppa:slgobinath/uget-chrome-wrapper 2 sudo apt update 3 sudo apt install uget-chrome-wrapper
楼主也遇见了这个问题,经过多方查找发现:2018/5/10更新2018年uGet团队已将uget-chrome-wrapper采用官方插件并重新命名为uget-integrator 因此新的uget-extension插件不再支持uget-chrome-wrapper
解决方案:
Ubuntu和Linux Mint
1 sudo add-apt-repository ppa:uget-team/ppa 2 sudo apt update 3 sudo apt install uget-integrator
其他Linux
1 wget https://raw.githubusercontent.com/ugetdm/ugetintegrator/master/install/linux/install_uget_integrator.sh 2 chmod +x install_uget_integrator.sh 3 ./install_uget_integrator.sh
安装完成重新启动浏览器,就解决了!楼主测试是ubuntu 16.04