Open Tabs Sync

Sync open tabs between devices

ما هو Open Tabs Sync؟

Open Tabs Sync هو إضافة Chrome تم تطويرها بواسطة syriusz، والميزة الرئيسية لها هي "Sync open tabs between devices".

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

screenshot

تحميل ملف CRX للإضافة Open Tabs Sync

قم بتنزيل ملفات الامتداد Open Tabs Sync بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
        }
    ]
}