// ==UserScript==
// @name VOT - Закадровый перевод видео
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Восстанавливает функцию "перевести видео" на YouTube
// @author You
// @match https://www.youtube.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Добавляем кнопку "перевести видео" в верхней части ролика
function addTranslationButton() {
const videoTitle = document.querySelector('.title');
if (videoTitle) {
const translationButton = document.createElement('button');
translationButton.innerText = 'Перевести видео';
translationButton.style.marginRight = '10px';
translationButton.onclick = () => {
// Ваш код для перевода видео
// Например, открываем закадровый перевод из YaBrowser
window.open('https://translate.yandex.ru/translate?lang=en-ru&url=' + encodeURIComponent(window.location.href));
};
videoTitle.appendChild(translationButton);
}
}
// Добавляем кнопку после загрузки страницы
window.addEventListener('load', addTranslationButton);
})();