release: 1.1.11

This commit is contained in:
mrbunker
2023-04-09 18:33:29 +08:00
parent fb9f9ffa4c
commit 110da4c67f
2 changed files with 31 additions and 4 deletions

33
dist/jop.user.js vendored
View File

@@ -1,7 +1,7 @@
// ==UserScript==
// @name JAV 添加跳转在线观看
// @namespace https://greasyfork.org/zh-CN/scripts/429173
// @version 1.1.10
// @version 1.1.11
// @author mission522
// @description 为 JavDB、JavBus、JavLibrary 这三个站点添加跳转在线观看的链接
// @license MIT
@@ -28,6 +28,8 @@
// @connect paipancon.com
// @connect ggjav.com
// @connect av01.tv
// @connect 18sex.org
// @connect highporn.net
// @connect javbus.com
// @connect javdb.com
// @connect javlibrary.com
@@ -977,6 +979,28 @@
},
method: print,
},
{
name: "18sex",
hostname: "18sex.org",
url: "https://www.18sex.org/cn/search/{{code}}/",
fetcher: "parser",
domQuery: {
linkQuery: ".white_link[href]",
titleQuery: ".white_link>.card-title",
},
method: print,
},
{
name: "highporn",
hostname: "highporn.net",
url: "https://highporn.net/search/videos?search_query={{code}}",
fetcher: "parser",
domQuery: {
linkQuery: ".well>a[href]",
titleQuery: ".well>a[href]>span.video-title",
},
method: print,
},
{
name: "JavBus",
disableLibItemName: "javbus",
@@ -1012,8 +1036,11 @@
},
];
const App = R(function ({ libItem, CODE }) {
const defDisables = ["AvJoy", "baihuse", "GGJAV", "AV01", "JavBus", "JavDB", "JAVLib"];
const [disables, setDisables] = p(GM_getValue("disable", defDisables));
const defDis = [
...["AvJoy", "baihuse", "GGJAV", "AV01", "18sex", "highporn"],
...["JavBus", "JavDB", "JAVLib"],
];
const [disables, setDisables] = p(GM_getValue("disable", defDis));
return o(preact2.Fragment, {
children: [
o("div", {

View File

@@ -10,7 +10,7 @@ const includeList = libSites.map((libItem) => libItem.href);
const UserscriptConfig: MonkeyUserScript = {
author: "mission522",
version: "1.1.10",
version: "1.1.11",
license: "MIT",
name: "JAV 添加跳转在线观看",
match: ["*://*/cn/?v=jav*"],