【自用】EROGAMESCAPE

批评空间添加bangumi和百度的跳转

目前為 2022-05-31 提交的版本,檢視 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         【自用】EROGAMESCAPE

// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  批评空间添加bangumi和百度的跳转
// @author       cxhttt
// @match        https://erogamescape.dyndns.org/~ap2/ero/toukei_kaiseki/*game.php?game*
// @match        https://erogamescape.dyndns.org/~ap2/ero/toukei_kaiseki/*

// ==/UserScript==

(function() {
    'use strict';

    if(location.href.indexOf('game.php?game')!=-1){
        let name = document.querySelector("#game_title > a").innerText
        $('#soft-title').append(`(<a href="https://bgm.tv/subject_search/${name}?cat=4" target="_blank" style="text-decoration:none;">Bangumi</a>)`)
        $('#soft-title').append(`(<a href="https://galge.fun/subjects/search?keyword=${name}" target="_blank" style="text-decoration:none;">2dfun</a>)`)
        $('#soft-title').append(`(<a href="https://www.baidu.com/s?wd=${name}"  target="_blank"  style="text-decoration:none;">baidu</a>)`)
        $('#soft-title').append(`(<a href="https://www.google.com.tw/search?q=${name}"  target="_blank"  style="text-decoration:none;">google</a>)`)
    }
    if(location.href == 'https://erogamescape.dyndns.org/~ap2/ero/toukei_kaiseki/')
    $('#nav_2 > div > h3:nth-child(9)').append(`<a href="https://erogamescape.dyndns.org/~ap2/ero/toukei_kaiseki/toukei_year_median.php?year=2022">2022年統計表(中央値順)</a>`)
    $('#nav_2 > div > h3:nth-child(9)').append(`<a href="https://erogamescape.dyndns.org/~ap2/ero/toukei_kaiseki/toukei_avg.php">統計表(平均値順)</a>`)



})();