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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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'"
}