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
公式URL 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
Eメール [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'"
}