Karnage cursor
נכון ליום
// ==UserScript==
// @name Karnage Accurate Aim Cursor+disable right click
// @namespace meatman2tasty
// @version 1.8
// @description Karnage cursor
// @author Meatman2tasty
// @match http://karnage.io/*
// @grant none
// ==/UserScript==
$("html, body").css("cursor","url(http://i.imgur.com/19WETkn.png) 17 17, default");
window.oncontextmenu = function () {
return false;
};