Open Tabs Sync

Sync open tabs between devices

Open Tabs Sync란 무엇입니까?

Open Tabs Sync은(는) syriusz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Sync open tabs between devices"입니다.

확장 프로그램 스크린샷

screenshot

Open Tabs Sync 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Sync all your Chrome open tabs between devices.
All tabs on all your devices displayed in one place on Google Chrome side panel divided to devices and open windows.
Click on the item to open new tab in current Chrome session with page from your other device.                    

확장 프로그램 기본 정보

이름 Open Tabs Sync Open Tabs Sync
ID ajfhocnnncognkminddbfadkgdjnlmln
공식 URL https://chromewebstore.google.com/detail/open-tabs-sync/ajfhocnnncognkminddbfadkgdjnlmln
설명 Sync open tabs between devices
파일 크기 22.52 KB
설치 횟수 257
현재 버전 3.2.7
최근 업데이트 2024-01-16
출시 날짜 2023-08-19
개발자 syriusz
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open Tabs Sync",
    "description": "Sync open tabs between devices",
    "version": "3.2.7",
    "manifest_version": 3,
    "icons": {
        "16": "images\/floppy-disk-regular.png",
        "32": "images\/floppy-disk-regular.png",
        "48": "images\/floppy-disk-regular.png",
        "128": "images\/floppy-disk-regular.png"
    },
    "action": {
        "default_icon": "images\/floppy-disk-regular.png",
        "default_title": "Open Tabs Sync side panel"
    },
    "permissions": [
        "tabs",
        "sidePanel",
        "storage",
        "alarms"
    ],
    "options_page": "options\/options.html",
    "side_panel": {
        "default_path": "sidepanel\/sidepanel.html"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": false,
            "match_origin_as_fallback": false,
            "match_about_blank": false,
            "run_at": "document_idle",
            "world": "ISOLATED"
        }
    ]
}