Skip to content

Instantly share code, notes, and snippets.

@PsichiX
Last active August 29, 2015 14:07
Show Gist options
  • Save PsichiX/8f45d342bd2acfa9a880 to your computer and use it in GitHub Desktop.
Save PsichiX/8f45d342bd2acfa9a880 to your computer and use it in GitHub Desktop.
Wykop Paski
// ==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