Re: nCore

From Crys, 5 Years ago, written in JavaScript, viewed 522 times. This paste is a reply to nCore from Crys - view diff
URL https://paste.godclan.hu/view/3IUvGzwV Embed
Download Paste or View Raw
  1. // ==UserScript==
  2. // @name         nCore usability fixes
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  Fix fucked up shit in nCore's UI
  6. // @author       Crys
  7. // @match        https://ncore.cc/torrents.php*
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11. (function($) {
  12.     'use strict';
  13.  
  14.     $('form[action^="/torrents.php"]:not([method="GET"])').attr('method', 'GET');
  15.  
  16.     if ('nevHosszEllenorzes' in window) {
  17.         window.nevHosszEllenorzes = function () {
  18.             return true;
  19.         };
  20.     }
  21. })(window.jQuery || window.$ || {});

Reply to "Re: nCore"

Here you can reply to the paste above