樱花转AGE

跳转age观看动漫

// ==UserScript==
// @name         樱花转AGE
// @namespace    http://tampermonkey.net/
// @version      0.42
// @description  跳转age观看动漫
// @author       You
// @match        http://www.yinghuacd.com/v/*
// @icon         https://www.google.com/s2/favicons?doma。in=yhdm.so
// @grant        none
// @run-at       document-end
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    let name = document.querySelector("body > div:nth-child(2) > div.gohome.l > h1 > a")
    name.href = "https://www.agemys.net/search?query="+name.innerText
    name.setAttribute('style',"color:red;")
    // Your code here...
})();