Chrome Tab Router

Routes urls to desired user profiles

Chrome Tab Router란 무엇입니까?

Chrome Tab Router은(는) Carl in 't Veld에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Routes urls to desired user profiles"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Chrome Tab Router 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'"
}