NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Scalie_King Taglist // @namespace http://tampermonkey.net/ // @version 0.1 // @description Enjoy your time while it tags for you! // @author Dragon0rca // @include http://9gag.com/gag/* // @grant none // ==/UserScript== var division1 = ["@bogdandjdj @jade_harley @aque78", "@fur_lurd_suns @fuzzball1031 @lefurryshark", "@cecil90 @evandiir_sergal @Cezcco", "@discord_is_real @fkingfurries @animehugs", "@doge_dealwithit @DaBlueBoy2202 @liquidfurry2", "@shut_up_ima_fox @rocario @asriel_reborn", "@the_novice @Gear_Clinkz @dragon0rca", "@siberian_bear @cateowl @ipwnu4ever", "@mrchristiality @ragelinkin @hydra96", "@s_jacket @innocentdoge @youla_yolo", "@judeau_pain @shard_486 @foutoasttriste", "@piaapo @scalie_king @lover_furry", "@rtvcd2 @blackfurrywolf @singularfox", "@thewolfleader @volf_the_wolf @princessfurry", "@meerkatz_ @arniel_draco @dasblauewolf", "@theris_kyriolf @_fisk_black @damnfurry", "@lithuaniaball @wow_so_wuff @furryfoxxy1", "@misterf0xx @cyanwolf @muaythai_boxer", "@wolfirry @dellerium_ @2best7furryous", "@kookue_cachoo @omnitsu @smiskerberries", "@voxel_furry @l337dud350 @lentrisaga", "@the_dogeknighte @furry_passin_by @easyname", "@lord_fur @digimaster123 @acupat", "@anotherwolfdoge @innocentdoge @thatguyfromleft", "@wolfing_furry @mezam3 @mastermorokai", "@brotigesbrot @sahilnarularoc @dasblauewolf ", "@landon_da_husky @wolfdreamsxox @xanderbrownwolf", "@mcgeekster @holodrio17 @vault_pony", "@mrtoast72 @wolfguy19951 @tigrerojo", "@rex1013 @fuzzball1031 @i_was_12", "@mister_fox_ @umadbro666999 @singularfox", "@darkdragon106 @huotundradragon @laser_furr", "@uncle__iroh @zoe_wolf @catain_nova", "@myrlon @land_stalker @arricktigerwolf", "@heinrichgama @Mazztamind @Tazz66", "@keksi2 @thegreenbush @spot_the_fur", "@Dataisplural92 @bandit_raccoon @snaptheleopard", "@aurora_the_wolf @Cute_draggy @Dimaskesawak", "@furryqueenv2 @revystyle680 @Nazariel", "@macnchi @Adriajor @Throjan", "@furrster090 @_zeny_ @soviet_doge_917", "@kubaseklok @lawlelel @damienhill", "@cynereo @edgyman @stargirl97", "@eflan @nobody129 @martin834", "@winter_tail @colourfox @Freggugarich", "@starrysock @alexandre95sang @derpydude323", "@ghurd @kenneth50055 @xrockraider", "@blue_sharky @fncyspidr @kookuecachoo", "@whatthefur @fluffyfurry @thenonamezz", "@morth_furry @cher0071998 @cheesecake_", "@golden_hope @hawkpi @StrukiTru", "@gottalovewifu @natrovos @cell_furry", "@mainewolfe @macfluffy @nekodwagon"]; //a total of 159 users. var i = 1; window.onkeydown = function(e){ if(e.keyCode == 113){ document.getElementsByClassName("post-text-area")[0].value = division1[0]; document.getElementsByClassName("cmnt-btn")[0].click(); var repeat = setInterval(function start(){ if(i == division1.length -1)clearInterval(repeat); document.getElementsByClassName("reply")[0].click(); document.getElementsByClassName("post-text-area")[1].value = division1[i]; document.getElementsByClassName("cmnt-btn")[1].click(); i++; },2000);}};