hide comments on VK.com

Specially for N.

  1. // ==UserScript==
  2. // @name hide comments on VK.com
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Specially for N.
  6. // @author NickKolok
  7. // @match https://vk.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var st = document.createElement('style');
  14. st.innerHTML = '.replies,.post_replies_header{visibility:hidden;position:absolute}';
  15. document.body.appendChild(st);
  16. })();