fefe dates 2

Ersetzt auf blog.fefe.de das [l] in den Pro-Post-Links durch das Post-Datum.

15.05.2014 itibariyledir. En son verisyonu görün.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @id             fefe dates 2
// @name           fefe dates 2
// @description    Ersetzt auf blog.fefe.de das [l] in den Pro-Post-Links durch das Post-Datum.
// @version        2.0
// @author         arbu (original: flying sheep)
// @namespace      https://greasyfork.org/users/1220
// @include        http://blog.fefe.de/*
// @include        https://blog.fefe.de/*
// @run-at         document-end
// @grant          GM_addStyle
// ==/UserScript==
GM_addStyle('body > h3 + ul > li > a[href^="?ts="] {color: black; text-decoration: none; margin-right: 1ex}');
for(var i = 3; i < document.links.length; i++) if(document.links[i].text == '[l]' && document.links[i].search.indexOf('?ts=') === 0) document.links[i].text = '[' + new Date((parseInt(document.links[i].search.substring(4), 16) ^ 0xfefec0de) * 1000).toLocaleTimeString() + ']';