DraftIcon

Change favicon on habrahabr when user moves post to drafts

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name        DraftIcon
// @description Change favicon on habrahabr when user moves post to drafts
// @version     0.4
// @icon        http://gm4.in/i/brb.ico
// @match       http://habrahabr.ru/post/*
// @match       http://habrahabr.ru/company/*/blog/*
// @run-at      document-end
// @namespace https://greasyfork.org/users/5010
// ==/UserScript==

if ( document.title == "Хабрахабр — Доступ к странице ограничен" )
{
	var link = document.createElement( 'link' );
	link.rel = 'icon';
	link.href = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAABlBMVEX////tHCQujCkBAAAALklEQVR42uXTIQoAAAgEwfP/nxaxWOTqipMMmw5UGKRAbZyHg/IgIEzNDgiftUqKAQKx2C5iUQAAAABJRU5ErkJggg==';
	document.head.appendChild( link );
}