Thanos

Thanosifies almost all the websites you visit

当前为 2021-04-07 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Thanos
  3. // @namespace http://tampermonkey.net/
  4. // @version 2.0
  5. // @description Thanosifies almost all the websites you visit
  6. // @author TheChickenMan
  7. // @match *://*/*
  8. // @run-at document-start
  9. // @grant GM_addStyle
  10. // ==/UserScript==
  11. //Thanos v2.0 has a better transparent gif so you can have the full thanos twerking experience
  12.  
  13. var style = document.createElement("style");
  14. style.type = "text/css";
  15. style.innerHTML = "* { background: url(https://media.tenor.com/images/5185e189880510119152ade7d0859fcc/tenor.gif) repeat-y, url(https://media.tenor.com/images/5185e189880510119152ade7d0859fcc/tenor.gif) repeat-y !important; background-size: 100% !important; } \n";
  16. document.getElementsByTagName("head")[0].appendChild(style);