Chrome Tab Router

Routes urls to desired user profiles

Cos'è Chrome Tab Router?

Chrome Tab Router è un'estensione di Chrome sviluppata da Carl in 't Veld, e la sua funzione principale è "Routes urls to desired user profiles".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Chrome Tab Router

Scarica i file di estensione Chrome Tab Router in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Chrome Tab Router Chrome Tab Router
ID mdagoleaelpaicldokjcpelifdgmiglg
URL Ufficiale https://chromewebstore.google.com/detail/chrome-tab-router/mdagoleaelpaicldokjcpelifdgmiglg
Descrizione Routes urls to desired user profiles
Dimensione del File 1.26 MB
Conteggio Installazioni 51
Versione Corrente 0.5.5
Ultimo Aggiornamento 2021-11-16
Data di Pubblicazione 2021-06-24
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Carl in 't Veld
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/cveld/chrome-tab-router
URL della Pagina di Aiuto https://github.com/cveld/chrome-tab-router
Lingue Supportate 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'"
}