赞
踩
代码如下:
// @namespace Youtube automatically loads subtitles
// @version 0.1
// @description Youtube自动加载字幕;Youtube automatically loads subtitles
// @description 使用Dualsub时没有自动加载字幕,只能手动点击,太懒了,写了个超简单的脚本一劳永逸
// @author 栗凹嗄
// @match *://www.youtube.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var subtitle = document.querySelector(".ytp-subtitles-button");
console.log(subtitle);
if(subtitle.getAttribute("aria-pressed") == 'false') subtitle.click();
})();
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。