Skip to content

SoonIter/tampermonkey-removePrefix-bilibili

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tampermonkey-removePrefix-bilibili

一个脚本解决 bilibili 视频分集过长的问题

下载链接(Go to Greasyfork and Download)

查看源码(Go to Github)

effect

功能 1. 视频分集换行

video-section-list

功能 2. 删除前缀

// 通过修改脚本中的 configs 激活
const configs = [
  {
    h1Title: '2022版Flink1.13实战教程', // 当前视频的 h1标题 的一部分即可
    reg: /\d{2,}_(第(.*)章_)?/, // 前缀 正则 或 string
  },
  {
    h1Title: '尚硅谷Java入门视频教程',
    reg: /\d{2,}\.尚硅谷\_/,
  },
];

worked