Schlock Isolator

Schlock Isolator isolates the strip

  1. // ==UserScript==
  2. // @name Schlock Isolator
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description Schlock Isolator isolates the strip
  6. // @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
  7. // @author You
  8. // @match http://*.schlockmercenary.com/*
  9. // @match https://*.schlockmercenary.com/*
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. var el = document.getElementById("strip");
  17. el.style.width = "100%"
  18. document.body.innerHTML= el.innerHTML;
  19.  
  20. })();
  21.  

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址