NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name KC Helper
// @namespace http://kittencomu.weebly.com
// @version 1.0
// @description KC Price Assistant
// @author TabloidA
// @match https://kittencards.clay.juegos/*
// @grant none
// @require http://code.jquery.com/jquery-latest.js
// @iconURL https://cdn.wtf/d/images/games/kitten_cards/icon_512.png
// @updateURL https://openuserjs.org/meta/TabloidA/KC_Helper.meta.js
// ==/UserScript==
$(document).ready(function() {
//$('.tabs-bar').hide();
$('.tabs-bar').append('<div id="prices" style="font-size: 50px; height: 500px; width: 800px; background-color: #2C879A; padding: 20px; overflow: none;"><iframe src="https://saraskittycollectionhelp.wordpress.com/price-guide/insert-prices/" style="border: 0" width="800px" height="500px"></iframe><br></div>');
$("#prices").css("z-index", "500").css("position", "fixed").css("top", "100px").css("left", 0);
$('<input type="button" value="PRICES" id="CP">').prependTo('body');
$("#CP").css('position', "fixed").css('left', 0).css("top", "65px").css("font-size", "20px").css("z-index", 500).css("border", "5px solid #00a9bc").css("background-color", "#00BCD4").css("color", "white").css("width", 100);
$("#prices").hide();
$('#CP').click(function(){
$("#prices").toggle();
});
});