Braveに切り替え

Execute UserScript

目前为 2025-03-08 提交的版本。查看 最新版本

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

(function() {
    'use strict';

    const button = document.createElement('div');
    button.style.position = 'fixed';
    button.style.top = '15px';
    button.style.left = '180px';
    button.style.width = '25px';
    button.style.height = '25px';
    button.style.backgroundColor = 'rgba(0, 0, 0, 0.5)';
    button.style.borderRadius = '5px';
    button.style.cursor = 'pointer';
    button.style.zIndex = '10000';
    button.style.display = 'flex';
    button.style.alignItems = 'center';
    button.style.justifyContent = 'center';

    for (let i = 0; i < 3; i++) {
        const line = document.createElement('div');
        line.style.width = '20px';
        line.style.height = '3px';
        line.style.backgroundColor = 'white';
        line.style.margin = '2px 0';
        button.appendChild(line);
    }

    button.addEventListener('click', () => {
javascript:(function(){
  var u = window.location.href;
  var ua = navigator.userAgent;
  if(/android/i.test(ua)){
    // Androidの場合: intentスキームを利用
    window.location = "intent:" + u.replace(/^https?:\/\//, "") + "#Intent;package=com.brave.browser;scheme=https;end";
  } else if(/(iPhone|iPad|iPod)/i.test(ua)){
    // iOSの場合: BraveのカスタムURLスキーム(Braveが対応している場合)
    window.location = "brave://open-url?url=" + encodeURIComponent(u);
  } else {
    // その他(主にデスクトップ)
    if(confirm("Braveで表示しますか?")){
      window.location = "brave://open-url?url=" + encodeURIComponent(u);
    }
  }
})();
    });

    document.body.appendChild(button);
})();

QingJ © 2025

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