Chrome Tab Router

Routes urls to desired user profiles

ما هو Chrome Tab Router؟

Chrome Tab Router هو إضافة Chrome تم تطويرها بواسطة Carl in 't Veld، والميزة الرئيسية لها هي "Routes urls to desired user profiles".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Chrome Tab Router

قم بتنزيل ملفات الامتداد Chrome Tab Router بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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'"
}