Chrome (Brave) 浏览器——允许重定向特定网站

Chrome (Brave) 浏览器——允许重定向特定网站

如何让 Brave 浏览器重定向并允许特定网站的弹出窗口?假设我们想要在 处弹出窗口并重定向https://example.com/

答案1

您可以使用 tampermonkey chrome 扩展来执行此操作,
脚本如下:

// ==UserScript==
// @name         redirect at certain website
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        http*://*example.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // URL target
    let redirect_to_url=`https://www.github.com`
setTimeout(function () {
    alert(`popup message: redirect`)
    let f;
        if (confirm(`redirect to[${redirect_to_url}]\n confirm?`)) {
            f= true;
        } else {
            f= false;
        }
        if(f){
            // GM_openInTab(b, { active: true, insert: true, setParent :true })
            // jump in place
            location.href=redirect_to_url;
        }else{
        }
},1000); // after 1 second ,the script begin to work

})();

相关内容