Open Tabs Sync

Sync open tabs between devices

What is Open Tabs Sync?

Open Tabs Sync is a Chrome extension developed by syriusz, and its main feature is "Sync open tabs between devices".

Extension Screenshots

screenshot

Download Open Tabs Sync Extension CRX File

Download Open Tabs Sync extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Open Tabs Sync Open Tabs Sync
ID ajfhocnnncognkminddbfadkgdjnlmln
Official URL https://chromewebstore.google.com/detail/open-tabs-sync/ajfhocnnncognkminddbfadkgdjnlmln
Description Sync open tabs between devices
File Size 22.52 KB
Installation Count 257
Current Version 3.2.7
Last Updated 2024-01-16
Publish Date 2023-08-19
Developer syriusz
Email [email protected]
Payment Type free
Supported Languages 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"
        }
    ]
}