Go to Graph button

Add a link/button to open the users profile on anime graph

Verze ze dne 02. 12. 2018. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Go to Graph button
// @namespace    MALgraphGo
// @version      1
// @description  Add a link/button to open the users profile on anime graph
// @author       Samu
// @match        https://myanimelist.net/profile/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var url = document.location.href;
    var matchUsername = url.match(/\/profile\/([a-zA-Z0-9_-]{2,16})/);
    var username = "";

    if (matchUsername && typeof matchUsername[1] === "string") {
        username = matchUsername[1]
    }

    var graphButton = document.createElement("a");
    graphButton.href = "https://graph.anime.plus/" + username;
    graphButton.className = "btn-profile-submit";
    graphButton.innerText = "Graph";
    graphButton.setAttribute("style", "width: 100%;margin-top: 4px;");
    graphButton.setAttribute("target", "_blank");

    var userButtons = document.querySelector("#content .user-profile .user-button");
    userButtons.appendChild(graphButton);

    /*var userProfileSideBar = userButtons.parentElement;
    userProfileSideBar.insertBefore(graphButton, userButtons);*/

    /*var profileHeader = document.querySelector("#contentWrapper > div:first-child h1.h1");
    profileHeader.appendChild(graphButton);*/


})();