首先在书签栏新建书签,在填地址的地方填入如下代码。之后在B站视频页点击书签即可。
会在一个弹出的新窗口内显示该视频封面
javascript:void(window.open(document.querySelector('meta[itemprop="image"]').getAttribute('content'), '_blank', 'location=yes,height=600,width=960,scrollbars=yes,status=yes'))
会将视频标题写入系统剪贴板
javascript: (() => {result = document.querySelector('h1[class="video-title"]').getAttribute('title'),console.log(result);const copyinput = document.createElement("textarea");copyinput.value = result, document.body.appendChild(copyinput), copyinput.select();try {document.execCommand("copy")} catch (err) {}document.body.removeChild(copyinput);})()