Youtube字幕单词可以直接选中,方便Mac电脑快速选中翻译单词

Youtube字幕单词可以直接选中,方便Mac电脑快速选中翻译单词(Mac触控板手势重按或三指轻点)

目前为 2021-11-23 提交的版本。查看 最新版本

// ==UserScript==
// @name:en      Set Youtube caption selectable easy to quickly translate word for Mac
// @name         Youtube字幕单词可以直接选中,方便Mac电脑快速选中翻译单词
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description:en  Set Youtube caption selectable, make it easy to quickly select and translate word in the caption for Mac
// @description  Youtube字幕单词可以直接选中,方便Mac电脑快速选中翻译单词(Mac触控板手势重按或三指轻点)
// @author       You
// @match        https://www.youtube.com/watch?v=-EogHCFd7w0&ab_channel=LinusTechTips
// @icon         https://www.google.com/s2/favicons?domain=youtube.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...

    /** 检测DOM变动 */
    const mutationDiv = document.querySelector('#ytp-caption-window-container');
    const observer = new MutationObserver(callback);
    observer.observe(mutationDiv, {
        childList: true, // 观察直接子节点
        subtree: true, // 及其更低的后代节点
        attributes: true,
        characterData: true
    });

    /** DOM变动的回调函数 */
    function callback (mutationRecord) {
        const spanList = mutationDiv.querySelectorAll('span');
        spanList.forEach(el => {
            el.style.userSelect = 'text';
        });
    };
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址