Greasy Fork 支持简体中文。

html.it Video Widget Remover

remove the video widget from html.it pages

  1. // ==UserScript==
  2. // @name html.it Video Widget Remover
  3. // @namespace https://userscripts.org
  4. // @description remove the video widget from html.it pages
  5. // @include http://www.html.it/*
  6. // @include http://forum.html.it/*
  7. // @version 1.1
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. document.getElementById("video_contenitore").innerHTML="<b>Bye Bye<br /><br />by kylon :)</b>";
  12. var targetDiv = document.getElementById("social-share-like");
  13. targetDiv.parentElement.removeChild(targetDiv);