// ==UserScript== // @name 影视网页标题清理 // @version 6 // @description 从疑似影视网页的标题提取片名与集数重新显示 // @author Lemon399 // @match *://*/* // @grant none // @namespace https://greasyfork.org/users/452911 // @downloadURL none // ==/UserScript== function matcher(title) { let result = ""; const regex = /^(?:.*《)?([^》]+?)(?=(?:第|\s)?(\d+)集|》).*$/; const regrst = title.match(regex); if (regrst) { const [_full, vname, num] = regrst; const numtxt = num ? " " + num.padStart(2, "0") : ""; if (vname) result = `${vname.trim()}${numtxt}`; } return result; } const title = document.title; const parsed = matcher(title); if (parsed) document.title = parsed;