Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name nCore || dereferer eltávolítása
- // @namespace created by gala
- // @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
- // @include http://ncore.cc/*
- // @include http://ncore.nu/*
- // @include https://ncore.cc/*
- // @include https://ncore.nu/*
- // ==/UserScript==
- $("a.bb-url").each(function() {
- var id = $(this).attr("href").replace("https://dereferer.me/?", "");
- $(this).attr("href", id);
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement