uGet + chrome默认调用
Tofloor
poster avatar
FZFZ
deepin
2018-06-14 08:52
Author
本帖最后由 udfk007 于 2018-6-14 01:04 编辑

uGet 是个很全能的带ui的下载软件,在没有迅雷的日子里,他就是迅雷。很多你懂的种子、磁链不能用迅雷的,用这个试试。。

  1. sudo apt install uget
Copy the Code
  1. sudo apt install aria2
Copy the Code
  1. wget https://raw.githubusercontent.com/ugetdm/uget-integrator/master/install/linux/install_uget_integrator.sh
  2. chmod +x install_uget_integrator.sh
  3. ./install_uget_integrator.sh
Copy the Code


chrome-store

https://chrome.google.com/webstore/detail/uget-integration/efjgjleilhflffpbnkaofpmdnajdpepi





========================================说句题外话。。
我买了flareget,挺便宜的,也挺好用,只是不支持BT和磁链。
我同时装了uget和flareget的chrome插件,发现不论下载什么都是flareget被优先调用。。
看来花了钱的,果然就要强势一点点。




Reply Favorite View the author
All Replies
avatar
xydekylin
deepin
2018-07-28 02:17
#1
在Firefox中无法使用,已经按你给的步骤过了一遍,结果不行
Reply View the author
avatar
jianguo922
deepin
2018-07-28 04:51
#2
有汉化版吗?
Reply View the author
avatar
FZFZ
deepin
2018-07-28 05:37
#3
https://bbs.deepin.org/post/158107
在Firefox中无法使用,已经按你给的步骤过了一遍,结果不行

我还真没在firefox里试过
Reply View the author
avatar
FZFZ
deepin
2018-07-28 05:41
#4

uget从商店装好就是中文版的。
flareget需要自己设置一下。
在工具栏上方找到 View,最下面Language,里面应该可以看到“简体中文”。设置好后重新启动软件。
Reply View the author
avatar
jianguo922
deepin
2018-07-28 07:22
#5
https://bbs.deepin.org/post/158107
uget从商店装好就是中文版的。
flareget需要自己设置一下。
在工具栏上方找到 View,最下面Language,里面 ...

好的,谢谢
Reply View the author
avatar
xydekylin
deepin
2018-07-28 18:24
#6
https://bbs.deepin.org/post/158107
我还真没在firefox里试过

刚重新试了一下,发现/usr/lib64/mozilla/native-messaging-hosts/com.ugetdm.firefox.json 里面没有内容
Reply View the author
avatar
FZFZ
deepin
2018-07-28 21:38
#7
本帖最后由 udfk007 于 2018-7-28 13:39 编辑
https://bbs.deepin.org/post/158107
刚重新试了一下,发现/usr/lib64/mozilla/native-messaging-hosts/com.ugetdm.firefox.json 里面没有内容 ...


我试了一下,没有问题。
上面这个你装了没有??
Reply View the author
avatar
xydekylin
deepin
2018-07-30 00:39
#8
https://bbs.deepin.org/post/158107
我试了一下,没有问题。
  • wget https://raw.githubusercontent.com/ugetdm/uget-integrator/master/in ...

  • 已经安装,还是不行,后来重git上clone下来。发现里面几个脚本里没内容。。。
    虽然按你上面的步骤,下载安装后,能找到对应的文件,但用文本编辑器打开,里面没内容,不知是什么原因?
    Reply View the author
    avatar
    FZFZ
    deepin
    2018-07-30 03:21
    #9
    https://bbs.deepin.org/post/158107
    已经安装,还是不行,后来重git上clone下来。发现里面几个脚本里没内容。。。
    虽然按你上面的步骤,下载 ...

    网络问题吧。。我就用wget命令,下来的脚本是有内容的,要不 我把内容粘给你,你从本地运行吧
    Reply View the author
    avatar
    FZFZ
    deepin
    2018-07-30 03:23
    #10
    https://bbs.deepin.org/post/158107
    已经安装,还是不行,后来重git上clone下来。发现里面几个脚本里没内容。。。
    虽然按你上面的步骤,下载 ...

    install_uget_integrator.sh.tar.gz

    ================
    附上内容:
    #!/bin/sh# Get the latest versionlatest_release=$(curl -L -s -H 'Accept: application/json' https://github.com/ugetdm/uget-integrator/releases/latest)version=$(echo $latest_release | sed -e 's/.*"tag_name":"\([^"]*\)".*/\1/')echo "Installing uget-integrator $version"# Remove old files if existsudo rm -f /usr/bin/uget-integrator# Download uget-integrator to /usr/bin/uget-integratorsudo wget --quiet https://raw.githubusercontent.com/ugetdm/uget-integrator/$version/bin/uget-integrator --output-document /usr/bin/uget-integrator# Make the uget-integrator executablesudo chmod +x /usr/bin/uget-integrator# If you don't have Chromium, Google Chrome, Vivaldi or Opera, you can comment the following two lines########################################################### Chromium, Google Chrome, Vivaldi and Opera ########################################################### Create the required directories for native messaging host configurationsudo mkdir -p /etc/opt/chrome/native-messaging-hostssudo mkdir -p /etc/chromium/native-messaging-hostssudo mkdir -p /etc/opera/native-messaging-hosts# Remove old files if existsudo rm -f /etc/opt/chrome/native-messaging-hosts/com.ugetdm.chrome.jsonsudo rm -f /etc/chromium/native-messaging-hosts/com.ugetdm.chrome.jsonsudo rm -f /etc/opera/native-messaging-hosts/com.ugetdm.chrome.json# Download com.ugetdm.chrome.json to /etc/opt/chrome/native-messaging-hosts/com.ugetdm.chrome.jsonsudo wget --quiet https://raw.githubusercontent.com/ugetdm/uget-integrator/$version/conf/com.ugetdm.chrome.json --output-document /etc/opt/chrome/native-messaging-hosts/com.ugetdm.chrome.json# Download com.ugetdm.chrome.json to /etc/chromium/native-messaging-hosts/com.ugetdm.chrome.jsonsudo wget --quiet https://raw.githubusercontent.com/ugetdm/uget-integrator/$version/conf/com.ugetdm.chrome.json --output-document /etc/chromium/native-messaging-hosts/com.ugetdm.chrome.json# Download com.ugetdm.chrome.json to /etc/opera/native-messaging-hosts/com.ugetdm.chrome.jsonsudo wget --quiet https://raw.githubusercontent.com/ugetdm/uget-integrator/$version/conf/com.ugetdm.chrome.json --output-document /etc/opera/native-messaging-hosts/com.ugetdm.chrome.json# If you don't have Firefox, you can comment the following two lines######################################################################## Mozilla Firefox ######################################################################### Create the required directories for native messaging host configurationsudo mkdir -p /usr/lib/mozilla/native-messaging-hostssudo mkdir -p /usr/lib64/mozilla/native-messaging-hosts# Remove old files if existsudo rm -f /usr/lib/mozilla/native-messaging-hosts/com.ugetdm.firefox.jsonsudo rm -f /usr/lib64/mozilla/native-messaging-hosts/com.ugetdm.firefox.json# Download com.ugetdm.firefox.json to /usr/lib/mozilla/native-messaging-hosts/com.ugetdm.firefox.jsonsudo wget --quiet https://raw.githubusercontent.com/ugetdm/uget-integrator/$version/conf/com.ugetdm.firefox.json --output-document /usr/lib/mozilla/native-messaging-hosts/com.ugetdm.firefox.json# Download com.ugetdm.firefox.json to /usr/lib64/mozilla/native-messaging-hosts/com.ugetdm.firefox.jsonsudo wget --quiet https://raw.githubusercontent.com/ugetdm/uget-integrator/$version/conf/com.ugetdm.firefox.json --output-document /usr/lib64/mozilla/native-messaging-hosts/com.ugetdm.firefox.jsonecho "uget-integrator is installed successfully!"echo "lease install the 'uGet Integration' extension and restart the browser"echo "  - Google Chrome, Chromium & Vivaldi: https://chrome.google.com/websto ... fpbnkaofpmdnajdpepi"echo "  - Mozilla Firefox: https://addons.mozilla.org/en-US/firefox/addon/ugetintegration/"echo "  - Opera: https://addons.opera.com/en/extensions/details/uget-integration"
    Reply View the author
    avatar
    xydekylin
    deepin
    2018-11-25 06:10
    #11
    https://bbs.deepin.org/post/158107
    ================
    附上内容:
    #!/bin/sh# Get the latest versionlatest_release=$(curl -L -s -H 'Acc ...

    谢谢楼主热心回复,已解决,解压文件后,根据里面的install.sh文件建目录,复制文件,然后重启浏览器就解决了!
    Reply View the author
    avatar
    ylxdxx
    deepin
    2018-11-25 08:06
    #12
    解决浏览器调用,记得有一个deb的安装包的
    Reply View the author