View difference between Paste ID: rUhin38q and 1yMm6xqF
SHOW: | | - or go back to the newest paste.
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
});