Proxer-Collapsable-Lists

Dieses Script bringt die zusammenklappbaren Anime-/Mangalisten aus dem Mobile Client ins Webinterface

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

You will need to install an extension such as Tampermonkey to install this script.

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Proxer-Collapsable-Lists
// @namespace    
// @version      0.7
// @description  Dieses Script bringt die zusammenklappbaren Anime-/Mangalisten aus dem Mobile Client ins Webinterface
// @author       TheExoduser
// @match        *://*.proxer.me/ucp?s=*
// @require      https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js
// @run-at       document-end
// ==/UserScript==

$(document).ready(function() {
    var checkTrue = false;

    // Check if correct page
    if (window.location.href.indexOf('anime') > -1 || window.location.href.indexOf('manga') > -1) {
        checkTrue = true;
    }
    if (window.location.href.indexOf('ucp') === -1 || checkTrue === false || window.location.href.indexOf('forum') > -1) {
        return;
    }

    // Move first row to thead
    $("table#box-table-a").each(function(index) {
        var rowFirst = $(this).find("tr:first");

        $(this).find("tr:first").remove();
        $(this).prepend("<thead style=\"cursor:pointer;\">" + $(rowFirst).html() + "</thead>");
    });

    // Add +/- toggle icon to table head
    $("table#box-table-a:eq(1)").find("tr:first").html($("table#box-table-a:eq(1)").find("tr:first").html().replace("</th>","<span style=\"float:right;\">-</span></th>"));
    $("table#box-table-a").not(":eq(1)").each(function(index) {
        $(this).find("tr:first").html($(this).find("tr:first").html().replace("</th>","<span style=\"float:right;\">+</span></th>"));
    });

    // Hide all tbodys exept of the currently watching list
    $("table#box-table-a").not(":eq(1)").find('tbody').toggle();

    // Add events to toggle the tbodys on click
    $("th").click(function() {
        if ($(this).html().indexOf("+") >= 0) {
            $(this).html($(this).html().replace("+", "-"));
        } else {
            $(this).html($(this).html().replace("-", "+"));
        }

        $(this).closest('table').find('tbody').toggle("slow");
    });

    // Echo a loaded message
    console.warn("Proxer-Collapsable-Lists Userscript successfully loaded!");
});