Chrome Tab Router

Routes urls to desired user profiles

Chrome Tab Router क्या है?

Chrome Tab Router Carl in 't Veld द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Routes urls to desired user profiles"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Chrome Tab Router एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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'"
}