├── .gitignore ├── LICENSE ├── README.md └── scripts ├── Clean Clipboard.js └── Translate.js /.gitignore: -------------------------------------------------------------------------------- 1 | # misc 2 | .DS_Store 3 | .env 4 | *.log 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kporten/scriptable-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kporten/scriptable-scripts/HEAD/README.md -------------------------------------------------------------------------------- /scripts/Clean Clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kporten/scriptable-scripts/HEAD/scripts/Clean Clipboard.js -------------------------------------------------------------------------------- /scripts/Translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kporten/scriptable-scripts/HEAD/scripts/Translate.js --------------------------------------------------------------------------------