├── .github └── workflows │ └── release.yaml ├── .gitignore ├── README.md └── src ├── icon.png ├── info.json └── main.js /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetone/bob-plugin-rapidapi-deepl-translator/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.bobplugin 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetone/bob-plugin-rapidapi-deepl-translator/HEAD/README.md -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetone/bob-plugin-rapidapi-deepl-translator/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetone/bob-plugin-rapidapi-deepl-translator/HEAD/src/info.json -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yetone/bob-plugin-rapidapi-deepl-translator/HEAD/src/main.js --------------------------------------------------------------------------------