Greasy Fork is available in English.

网页分屏

Split the Page | 网页分屏展示

// ==UserScript==
// @name         网页分屏
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Split the Page | 网页分屏展示
// @author       Lynn Speng
// @match        http://*/*
// @include      https://*/*
// @grant        none
// ==/UserScript==

(function() {

    document.onkeydown = function(event) {
    var key = event.key;
    var ctrlKey = event.ctrlKey || event.metaKey;
     // 快捷键 Ctrl + `
    if(ctrlKey && key === '`') {
        document.write('<HTML><HEAD></HEAD><FRAMESET COLS=\'50%25,*\'><FRAME SRC=' + location.href + '><FRAME SRC=' + location.href + '></FRAMESET></HTML>');
    }
}
})();