jav01 markList

add marklist for jav01 by javdb

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         jav01 markList
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  add marklist for jav01 by javdb
// @author       moonwizard
// @match        https://www.av01.tv/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=av01.tv
// @grant        GM_xmlhttpRequest
// ==/UserScript==

(function () {
	'use strict';


	let fanHao = document.getElementById('id_list').children[5].innerHTML;
	console.log(fanHao);
	let myUrl = "https://javdb.com/search?q=" + fanHao;
    let trueUrl = "";

    console.log('我的脚本加载了');
	var button = document.createElement("button"); //创建一个input对象(提示框按钮)
	button.id = "mark";
	button.textContent = "收藏";


    GM_xmlhttpRequest({
      method: "GET",
      url: myUrl,
      onload: function (res) {

          let domNew = new DOMParser().parseFromString(res.responseText, "text/html");
          let tempUrl = domNew.getElementsByClassName('box')[0] + "";
          console.log(tempUrl);
          trueUrl = "https://javdb.com/v" + tempUrl.substring(tempUrl.lastIndexOf('/'),tempUrl.length);
          console.log('lalalall' + trueUrl);

      },
    });


	//绑定按键点击功能
	button.onclick = function (){
        console.log('open:' + trueUrl)
		window.open(trueUrl);
		return;
	};

    var x = document.getElementsByClassName('info_row')[0];
	x.appendChild(button);

})();