Shows English or Russian translation next to the lyrics on genius.com. Powered by Yandex.Translate
< 腳本Genius.com translate lyrics的回應
If you wish to do something translation, you can use Google's Translation API. No token required.
fetch(`https: //translate.googleapis.com/translate_a/single?client=gtx&sl=auto&tl=${localeLang}&dj=1&dt=t&dt=rm&q=${q}`).then(res => { return res.json() }) .then(result => { let resultText = result.sentences.map((function (s) { return "trans" in s ? s.trans : ""; })).join("") return resultText.split("\n"); })
登入以回復
If you wish to do something translation, you can use Google's Translation API. No token required.