Greasy Fork is available in English.
有时候有的片子已看过,但不记得是否看过。本脚本配合Everything 和 python3 搜索本地文件和显示搜索结果
// ==UserScript==
// @name javdb本地视频 python脚本搜索
// @namespace http://tampermonkey.net/
// @version 0.3
// @description 有时候有的片子已看过,但不记得是否看过。本脚本配合Everything 和 python3 搜索本地文件和显示搜索结果
// @author zero2200
// @match https://javdb*.com/v/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// @license none
// ==/UserScript==
(function() {
'use strict';
var number = document.querySelector("body > section > div > div.video-detail > h2 > strong:nth-child(1)").innerHTML;
console.log(number);
var cmd = "openExe:"+number;
console.log(cmd);
window.open(cmd);
// Your code here...
})();