Last active
August 29, 2015 14:07
-
-
Save PsichiX/8f45d342bd2acfa9a880 to your computer and use it in GitHub Desktop.
Wykop Paski
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Wykop Paski | |
// @namespace paski.wykop.psichix.com | |
// @description Dodaje pod avatarami opisy pomagające daltonistom odróżniać mirków od mirabelek: '#M' - mężczyzna; '#K' - kobieta. | |
// @include http://www.wykop.pl/* | |
// @version 1.0.1 | |
// @grant none | |
// ==/UserScript== | |
$(document).ready(function () { | |
$('img.avatar.male').parent().append('<div>#M</div>'); | |
$('img.avatar.female').parent().append('<div>#K</div>'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment