Greasy Fork 支持简体中文。

B站一键跳过番剧片头

bilibili B站一键跳过番剧片头按一下=+键快进一分半,可在配置文件修改,目前不支持火狐浏览器

// ==UserScript==
// @name         B站一键跳过番剧片头
// @description  bilibili B站一键跳过番剧片头按一下=+键快进一分半,可在配置文件修改,目前不支持火狐浏览器
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  try to take over the world!
// @author       MintLatte
// @match        https://www.bilibili.com/bangumi/play/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @license MintLatte
// ==/UserScript==
document.addEventListener('keyup',function(e){
    if(e.keyCode===187){//187代表“=+”的keycode值,keycode值可在https://www.cnblogs.com/lxwphp/p/9548823.html查询
        var video = document.querySelector('video');
        //快进代码
        video.currentTime= video.currentTime+90//此处设置快进时间,单位秒
    }
})