/*
* @title bilibili ログアウト状態で停止させないUserscript
* @description 60秒間再生するとログイン画面をポップアップして一時停止させられるのでその前に変数を上書きする
* @include https://www.bilibili.com/video/*
* @license MIT License
*/
//天安門広場
setTimeout(
function() {
let s = document.createElement('script');
s.innerHTML='__INITIAL_STATE__.user.isLogin=true;';
document.head.appendChild(s);
},50000);