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
电子邮箱 [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'"
}