BiliTran

attempt to translate Simplified Chinese to English on bilibili.com using Google Translate API

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         BiliTran
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  attempt to translate Simplified Chinese to English on bilibili.com using Google Translate API
// @author       mastodonna233
// @match        https://www.bilibili.com/
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    var audioElements = document.querySelectorAll('audio');
    
    // Loop through all audio elements on the page
    audioElements.forEach(function(audioElement) {
        // Get the language code for Simplified Chinese (zh-CN)
        var languageCode = 'zh-CN';
        
        // Create a new translation object using the Google Translate API
        var translation = new google.translate.Translation();
        
        // Set the source language to Simplified Chinese (zh-CN)
        translation.setSourceLanguage(languageCode);
        
        // Set the destination language to English (en)
        translation.setDestinationLanguage('en');
        
        // Get the audio element's text content
        var textContent = audioElement.textContent;
        
        // Translate the text using the Google Translate API
        translation.translateText(textContent, function(translatedText) {
            // Replace the original text with the translated text
            audioElement.textContent = translatedText;
        }, {
            // Use the "male" voice for the translation
            voice: 'male',
            
            // Set the pitch and speed of the voice
            pitch: 1,
            speed: 1
        });
    });
})();