Unblur search results on up.codes

try to take over the world!

  1. // ==UserScript==
  2. // @name Unblur search results on up.codes
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author scuzz
  7. // @match https://up.codes/search*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. document.getElementById("results_locked_msg_anchor_container").remove();
  15.  
  16. var elems = document.querySelectorAll(".result_locked");
  17.  
  18. [].forEach.call(elems, function(el) {
  19. el.classList.remove("result_locked");
  20. });
  21. })();