强制启用在线播放按钮
// ==UserScript==
// @name Biliplus启用在线播放按钮
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 强制启用在线播放按钮
// @author none
// @license MIT
// @match *://*.biliplus.com/*
// @grant none
// @run-at document-idle
// ==/UserScript==
(function() {
'use strict';
const enablePlayback = localStorage.getItem('enablePlayback');
if (enablePlayback !== 'on') {
localStorage.setItem('enablePlayback', 'on');
}
})();