Chrome Tab Router

Routes urls to desired user profiles

Was ist Chrome Tab Router?

Chrome Tab Router ist eine Chrome-Erweiterung, die von Carl in 't Veld entwickelt wurde, und ihr Hauptmerkmal ist "Routes urls to desired user profiles".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Chrome Tab Router-Erweiterungs-CRX-Datei herunterladen

Laden Sie Chrome Tab Router-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Chrome Tab Router Chrome Tab Router
ID mdagoleaelpaicldokjcpelifdgmiglg
Offizielle URL https://chromewebstore.google.com/detail/chrome-tab-router/mdagoleaelpaicldokjcpelifdgmiglg
Beschreibung Routes urls to desired user profiles
Dateigröße 1.26 MB
Installationsanzahl 51
Aktuelle Version 0.5.5
Letztes Update 2021-11-16
Veröffentlichungsdatum 2021-06-24
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Carl in 't Veld
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/cveld/chrome-tab-router
Hilfeseite URL https://github.com/cveld/chrome-tab-router
Unterstützte Sprachen 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'"
}