robinhugy

ncore defererer eltávolítása

Jan 17th, 2018
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name nCore || dereferer eltávolítása
  3. // @namespace created by gala
  4. // @description Ez eltávolítja a url tagokból a https://dereferer.me/? részt! Akit ez mindig is zavart azt most már nem fogja. A scriptet csak saját felelősségre használjátok
  5. // @include http://ncore.cc/*
  6. // @include http://ncore.nu/*
  7. // @include https://ncore.cc/*
  8. // @include https://ncore.nu/*
  9. // ==/UserScript==
  10. $("a.bb-url").each(function() {
  11. var id = $(this).attr("href").replace("https://dereferer.me/?", "");
  12. $(this).attr("href", id);
  13. });
Add Comment
Please, Sign In to add comment