Remove Web Limits

Removes web limits

  1. // ==UserScript==
  2. // @name Remove Web Limits
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Removes web limits
  6. // @author Veliomoure
  7. // @match *://*/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. window.addEventListener('load', function() {
  14. var elements = document.querySelectorAll('iframe, object, embed');
  15. for (var i = 0; i < elements.length; i++) {
  16. elements[i].remove();
  17. }
  18. });
  19. })();

QingJ © 2025

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