Greasy Fork 还支持 简体中文。

Remove It

lock mouse and remove body & change html to black

  1. // ==UserScript==
  2. // @name Remove It
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description lock mouse and remove body & change html to black
  6. // @author HaMm3r_MaN
  7. // @match *://*/*
  8. // @icon https://i.pinimg.com/originals/25/9c/83/259c83f98ee97497c014b3be5bfd29ed.gif
  9. // @grant none
  10. // @license GPLv3
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. document.querySelector("body").remove();
  16. document.querySelector("head > title").innerHTML = ' "w" استغفر الله العظيم'
  17. var html = document.querySelector("html");
  18. html.style.backgroundColor = 'Black'
  19. window.onload = function() {
  20. html.requestFullscreen()
  21. html.requestPointerLock();
  22. };
  23.  
  24. })();