网页分屏

Split the Page | 网页分屏展示

  1. // ==UserScript==
  2. // @name 网页分屏
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Split the Page | 网页分屏展示
  6. // @author Lynn Speng
  7. // @match http://*/*
  8. // @include https://*/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13.  
  14. document.onkeydown = function(event) {
  15. var key = event.key;
  16. var ctrlKey = event.ctrlKey || event.metaKey;
  17. // 快捷键 Ctrl + `
  18. if(ctrlKey && key === '`') {
  19. document.write('<HTML><HEAD></HEAD><FRAMESET COLS=\'50%25,*\'><FRAME SRC=' + location.href + '><FRAME SRC=' + location.href + '></FRAMESET></HTML>');
  20. }
  21. }
  22. })();

QingJ © 2025

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