├── .github └── workflows │ └── release.yml ├── README.md ├── bobplugin ├── dependOnService │ ├── appcast.json │ ├── scripts │ │ └── update_appcast.py │ └── src │ │ ├── config.js │ │ ├── icon.png │ │ ├── info.json │ │ ├── main.js │ │ └── utils.js └── independently │ └── src │ ├── config.js │ ├── icon.png │ ├── info.json │ ├── main.js │ └── utils.js └── youdaoTranslateServer ├── javaScript ├── youdao.js └── youdaoDict.js └── pythonServer ├── requirements.txt └── youdao.py /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/bob-plugin-akl-youdao-free-translate/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/bob-plugin-akl-youdao-free-translate/HEAD/README.md -------------------------------------------------------------------------------- /bobplugin/dependOnService/appcast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/bob-plugin-akl-youdao-free-translate/HEAD/bobplugin/dependOnService/appcast.json -------------------------------------------------------------------------------- /bobplugin/dependOnService/scripts/update_appcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/bob-plugin-akl-youdao-free-translate/HEAD/bobplugin/dependOnService/scripts/update_appcast.py -------------------------------------------------------------------------------- /bobplugin/dependOnService/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/bob-plugin-akl-youdao-free-translate/HEAD/bobplugin/dependOnService/src/config.js -------------------------------------------------------------------------------- /bobplugin/dependOnService/src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/bob-plugin-akl-youdao-free-translate/HEAD/bobplugin/dependOnService/src/icon.png -------------------------------------------------------------------------------- /bobplugin/dependOnService/src/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/bob-plugin-akl-youdao-free-translate/HEAD/bobplugin/dependOnService/src/info.json -------------------------------------------------------------------------------- /bobplugin/dependOnService/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/bob-plugin-akl-youdao-free-translate/HEAD/bobplugin/dependOnService/src/main.js -------------------------------------------------------------------------------- /bobplugin/dependOnService/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/bob-plugin-akl-youdao-free-translate/HEAD/bobplugin/dependOnService/src/utils.js -------------------------------------------------------------------------------- /bobplugin/independently/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/bob-plugin-akl-youdao-free-translate/HEAD/bobplugin/independently/src/config.js -------------------------------------------------------------------------------- /bobplugin/independently/src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/bob-plugin-akl-youdao-free-translate/HEAD/bobplugin/independently/src/icon.png -------------------------------------------------------------------------------- /bobplugin/independently/src/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/bob-plugin-akl-youdao-free-translate/HEAD/bobplugin/independently/src/info.json -------------------------------------------------------------------------------- /bobplugin/independently/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/bob-plugin-akl-youdao-free-translate/HEAD/bobplugin/independently/src/main.js -------------------------------------------------------------------------------- /bobplugin/independently/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/bob-plugin-akl-youdao-free-translate/HEAD/bobplugin/independently/src/utils.js -------------------------------------------------------------------------------- /youdaoTranslateServer/javaScript/youdao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/bob-plugin-akl-youdao-free-translate/HEAD/youdaoTranslateServer/javaScript/youdao.js -------------------------------------------------------------------------------- /youdaoTranslateServer/javaScript/youdaoDict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/bob-plugin-akl-youdao-free-translate/HEAD/youdaoTranslateServer/javaScript/youdaoDict.js -------------------------------------------------------------------------------- /youdaoTranslateServer/pythonServer/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/bob-plugin-akl-youdao-free-translate/HEAD/youdaoTranslateServer/pythonServer/requirements.txt -------------------------------------------------------------------------------- /youdaoTranslateServer/pythonServer/youdao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akl7777777/bob-plugin-akl-youdao-free-translate/HEAD/youdaoTranslateServer/pythonServer/youdao.py --------------------------------------------------------------------------------