What.CD :: Extended Main Menu (2014 Version)

Insert logchecker, better and WhatIMG link in the main menu

Verze ze dne 05. 06. 2014. 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           What.CD :: Extended Main Menu (2014 Version)
// @icon           https://what.cd/favicon.ico
// @description    Insert logchecker, better and WhatIMG link in the main menu
// @include        https://what.cd/*
// @include        https://ssl.what.cd/*
// @version        1.0.1
// @require        https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js

// @namespace https://greasyfork.org/users/2290
// ==/UserScript==

var target = document.getElementById('nav_upload');

// Add Logchecker link
$("#nav_upload").after('<li id="nav_logchecker" class="brackets"><a href="logchecker.php">Logchecker</a></li>');

// Add Better link
$("#nav_logchecker").after('<li id="nav_better" class="brackets"><a href="better.php">Better</a></li>');

// Add WhatIMG link
$("#nav_better").after('<li id="nav_whatimg" class="brackets"><a href="https://whatimg.com" target="_blank">WhatIMG</a></li>');