Accurate Aim Cursor

Karnage cursor

  1. // ==UserScript==
  2. // @name Accurate Aim Cursor
  3. // @namespace vertix.io
  4. // @version 1.0
  5. // @description Karnage cursor
  6. // @author Meatman2tasty
  7. // @match http://vertix.io/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. $("html, body").css("cursor","url(http://i.imgur.com/19WETkn.png) 34 34, default");
  12.  
  13. window.oncontextmenu = function () {
  14. return false;
  15. };