Torn Easter Egg Links

Easter Egg Links

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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

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

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

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

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Torn Easter Egg Links
// @namespace    https://www.torn.com/profiles.php?XID=2029670
// @version      1.0
// @description  Easter Egg Links
// @author       Mike Pence
// @match        https://www.torn.com/*
// @match        http://www.torn.com/*
// @requires     https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js
// ==/UserScript==

$(document).ready(function(){
    var randomNum = Math.floor((Math.random() * 10) + 1);
    if(randomNum == 1){
        $("#iconTray").prepend("<li class='iconShow' title='<b>Easter Egg Competition</b>'><a href='/competition.php'><img src='/images/items/475/large.png?v=1491311161899' witdth='34' height='23' style='position:relative;left:-14px;top:-3px'></a></li>");
    }
    else if(randomNum == 2){
        $("#iconTray").prepend("<li class='iconShow' title='<b>Easter Egg Competition</b>'><a href='/competition.php'><img src='/images/items/473/large.png?v=1491311161899' witdth='34' height='23' style='position:relative;left:-14px;top:-3px'></a></li>");
    }
    else if(randomNum == 3){
        $("#iconTray").prepend("<li class='iconShow' title='<b>Easter Egg Competition</b>'><a href='/competition.php'><img src='/images/items/474/large.png?v=1491311161899' witdth='34' height='23' style='position:relative;left:-14px;top:-3px'></a></li>");
    }
    else if(randomNum == 4){
        $("#iconTray").prepend("<li class='iconShow' title='<b>Easter Egg Competition</b>'><a href='/competition.php'><img src='/images/items/477/large.png?v=1491311161899' witdth='34' height='23' style='position:relative;left:-14px;top:-3px'></a></li>");
    }
    else if(randomNum == 5){
        $("#iconTray").prepend("<li class='iconShow' title='<b>Easter Egg Competition</b>'><a href='/competition.php'><img src='/images/items/584/large.png?v=1491311161899' witdth='34' height='23' style='position:relative;left:-14px;top:-3px'></a></li>");
    }
    else if(randomNum == 6){
        $("#iconTray").prepend("<li class='iconShow' title='<b>Easter Egg Competition</b>'><a href='/competition.php'><img src='/images/items/472/large.png?v=1491311161899' witdth='34' height='23' style='position:relative;left:-14px;top:-3px'></a></li>");
    }
    else if(randomNum == 7){
        $("#iconTray").prepend("<li class='iconShow' title='<b>Easter Egg Competition</b>'><a href='/competition.php'><img src='/images/items/585/large.png?v=1491311161899' witdth='34' height='23' style='position:relative;left:-14px;top:-3px'></a></li>");
    }
    else if(randomNum == 8){
        $("#iconTray").prepend("<li class='iconShow' title='<b>Easter Egg Competition</b>'><a href='/competition.php'><img src='/images/items/583/large.png?v=1491311161899' witdth='34' height='23' style='position:relative;left:-14px;top:-3px'></a></li>");
    }
    else if(randomNum == 9){
        $("#iconTray").prepend("<li class='iconShow' title='<b>Easter Egg Competition</b>'><a href='/competition.php'><img src='/images/items/478/large.png?v=1491311161899' witdth='34' height='23' style='position:relative;left:-14px;top:-3px'></a></li>");
    }
    else{
        $("#iconTray").prepend("<li class='iconShow' title='<b>Easter Egg Competition</b>'><a href='/competition.php'><img src='/images/items/476/large.png?v=1491311161899' witdth='34' height='23' style='position:relative;left:-14px;top:-3px'></a></li>");
    }
    $(".areas").prepend("<li><div class='list-link' id='nav-items'><a href='/imarket.php#/p=market&cat=candy'><i class='left'><img src='/images/items/478/large.png?v=1491311161899' witdth='34' height='23'></i><span class='border-l'></span><span class='border-r'></span><span class='list-link-name'>Buy Easter Eggs</span></a></div></li>");
    $(".areas").prepend("<li><div class='list-link' id='nav-items'><a href='/item.php#candy-items'><i class='left'><img src='/images/items/478/large.png?v=1491311161899' witdth='34' height='23'></i><span class='border-l'></span><span class='border-r'></span><span class='list-link-name'>My Easter Eggs</span></a></div></li>");
    $(".areas").prepend("<li><div class='list-link' id='nav-items'><a href='/competition.php'><i class='left'><img src='/images/items/478/large.png?v=1491311161899' witdth='34' height='23'></i><span class='border-l'></span><span class='border-r'></span><span class='list-link-name'>Easter Egg Comp.</span></a></div></li>");
});