DraftIcon

Change favicon on habrahabr when user moves post to drafts

  1. // ==UserScript==
  2. // @name DraftIcon
  3. // @description Change favicon on habrahabr when user moves post to drafts
  4. // @version 0.4
  5. // @icon http://gm4.in/i/brb.ico
  6. // @match http://habrahabr.ru/post/*
  7. // @match http://habrahabr.ru/company/*/blog/*
  8. // @run-at document-end
  9. // @namespace https://greasyfork.org/users/5010
  10. // ==/UserScript==
  11.  
  12. if ( document.title == "Хабрахабр — Доступ к странице ограничен" )
  13. {
  14. var link = document.createElement( 'link' );
  15. link.rel = 'icon';
  16. link.href = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAABlBMVEX////tHCQujCkBAAAALklEQVR42uXTIQoAAAgEwfP/nxaxWOTqipMMmw5UGKRAbZyHg/IgIEzNDgiftUqKAQKx2C5iUQAAAABJRU5ErkJggg==';
  17. document.head.appendChild( link );
  18. }