您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
详情页添加r18.com预览
当前为
// ==UserScript== // @name jav_r18 // @version 0.0.1 // @include http*://*javlibrary.com/*/?v=* // @description 详情页添加r18.com预览 // @author bilabila // @grant GM_xmlhttpRequest // @grant GM_download // @namespace https://greasyfork.org/users/164996 // ==/UserScript== (()=> { 'use strict'; const parseHTML = (str) => { var tmp = document.implementation.createHTMLDocument(); tmp.body.innerHTML = str; return tmp; }; const avid = document.title.split(' ')[0]; const get_video_url = (avid, callback) => { GM_xmlhttpRequest({ url: `http://www.r18.com/common/search/searchword=${avid}`, onload: (res) => callback(parseHTML(res.responseText).querySelector('.js-view-sample').getAttribute('data-video-high')) }); }; const add_to_doc = (video_url) => { document.querySelector('#video_favorite_edit').insertAdjacentHTML('beforeend', `<video id='jav_r18' style='postiton:absolute;z-order:1' src=${video_url} controls autoplay></video>`); }; if (document.querySelector('#video_jacket_img')) get_video_url(avid, add_to_doc); })();