Chrome Tab Router

Routes urls to desired user profiles

什麼是Chrome Tab Router?

Chrome Tab Router是由Carl in 't Veld開發的Chrome擴展程式,該擴展的主要功能是“Routes urls to desired user profiles”。

擴展截圖

screenshot
screenshot
screenshot

下載Chrome Tab Router擴展crx文件

下載Chrome Tab Router擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension allows you to configure Chrome to move opened tabs to other connected user profiles. As you may know, every user profile allows for a separate security context. For example, if you have set up a personal and a work user profile, this extension can move your work related sites automatically to your work profile, and your personal sites to your personal profile. The extension requires you to set up rules based on regular expression matching with the url.                    

擴展基本資訊

名稱 Chrome Tab Router Chrome Tab Router
ID mdagoleaelpaicldokjcpelifdgmiglg
官方網址 https://chromewebstore.google.com/detail/chrome-tab-router/mdagoleaelpaicldokjcpelifdgmiglg
簡介 Routes urls to desired user profiles
檔案大小 1.26 MB
安裝次數 51
目前版本 0.5.5
更新時間 2021-11-16
上架時間 2021-06-24
評分 5.00/5 共 2 次評分
開發者 Carl in 't Veld
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/cveld/chrome-tab-router
說明頁面URL https://github.com/cveld/chrome-tab-router
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "$schema": "http:\/\/json.schemastore.org\/chrome-manifest",
    "manifest_version": 2,
    "name": "Chrome Tab Router",
    "description": "Routes urls to desired user profiles",
    "version": "0.5.5",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost:4200\/*",
                "https:\/\/*.azurestaticapps.net\/*"
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/vendor.js",
            "js\/background.js"
        ]
    },
    "permissions": [
        "storage",
        "tabs",
        "",
        "webNavigation"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}