Braveに切り替え j

Execute UserScript

// ==UserScript==
// @name        Braveに切り替え j
// @namespace    http://tampermonkey.net/
// @version      1.2
// @description  Execute UserScript
// @author       Your Name
// @match       https://*
// @grant       none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    
    document.addEventListener('keydown', (e) => {
        
                if (e.key === 'j') {
                    javascript:(function(){   var u = window.location.href;   var ua = navigator.userAgent;   if(/android/i.test(ua)){    window.location = "intent:" + u.replace(/^https?:\/\//, "") + "#Intent;package=com.brave.browser;scheme=https;end";   } else if(/(iPhone|iPad|iPod)/i.test(ua)){ window.location = "brave://open-url?url=" + encodeURIComponent(u);   } else {    if(confirm("Braveで表示しますか?")){       window.location = "brave://open-url?url=" + encodeURIComponent(u);     }   } })();
                }
            
    });
})();

QingJ © 2025

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