vilianov.com

Remove all unnecessary blocks from page.

  1. // ==UserScript==
  2. // @name vilianov.com
  3. // @namespace http://vilianov.com
  4. // @include http://vilianov.com/*
  5. // @version 1
  6. // @grant none
  7. // @author benipaz
  8. // @description Remove all unnecessary blocks from page.
  9. // ==/UserScript==
  10.  
  11. function GM_addStyle(css) {
  12. var head, style;
  13. head = document.getElementsByTagName('head')[0];
  14. if (!head) { return; }
  15. style = document.createElement('style');
  16. style.type = 'text/css';
  17. style.innerHTML = css;
  18. head.appendChild(style);
  19. }
  20.  
  21. GM_addStyle('#side-bar {display:none !important;}');
  22. GM_addStyle('#yandex_ad {display:none !important;}');
  23. GM_addStyle('#related-posts {display:none !important;}');
  24. GM_addStyle('#content {width:100% !important;}');