Real-Time Tab Sync

Keeps the same tabs on all your machines. Tab changes are applied in real time on all of your devices.

Real-Time Tab Syncคืออะไร?

Real-Time Tab Sync เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Petko Ditchev และคุณลักษณะหลักของมันคือ "Keeps the same tabs on all your machines. Tab changes are applied in real time on all of your devices."

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Real-Time Tab Sync

ดาวน์โหลดไฟล์ส่วนขยาย Real-Time Tab Sync ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The extension watches for tab changes and synchronizes them in real time across all of your computers that have it enabled (Chrome on Android does not support extensions yet). 

You can toggle automatic synchronization on and off from the extension's icon.

Note:
* You need to enable synchronization in the Chrome settings.
* The extension does not work on Chromium since the Chrome Sync API does no longer work there.
* The positions of windows and tabs are not preserved by design.
* Tab grouping is not yet supported.
* It's implied that you want to keep your tabs across sessions (otherwise ending a session would close the tabs everywhere)
* New tabs (chrome://newtab) and developer tools (chrome://developer-tools/*) are unaffected by the extension to benefit the workflow.
* Synchronization occurs only when all tabs have completed loading
* The extension works in unison with Chrome "On startup" settings :
  - If you choose "Open a new tab" - it will start with a new tab , and sync the tabs from other computers/previous session in the background . 
  - If you choose "Continue where I left off" or a set of pages it will merge them with the sync tabs

Known issues :
- Newly closed tabs may be reopened due to syncing latency.
- When a user starts Chrome in one machine and restores its tabs - these tabs may be duplicated in other machines.
- When a user toggles between syncAll and syncPinned - tabs may be duplicated or removed in machines.

For developers that want to check out the code - yes , it's open source, and you can check it out at GitHub : https://github.com/petko10/real-time-tab-sync 

Great thanks to those who already contributed:
- Richard Fang for his fixes of long standing issues and overall stability improvements 
- Chris de Claverie for adding the "Sync pinned/all tabs" along with a design touch up of the extension popup and other refactoring and debugging work                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Real-Time Tab Sync Real-Time Tab Sync
ID bflolmfdngaflefhmapdbbjmclioljck
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/real-time-tab-sync/bflolmfdngaflefhmapdbbjmclioljck
คำอธิบาย Keeps the same tabs on all your machines. Tab changes are applied in real time on all of your devices.
ขนาดไฟล์ 122 KB
จำนวนการติดตั้ง 4,859
เวอร์ชันปัจจุบัน 1.3.4
อัปเดตครั้งล่าสุด 2021-06-15
วันที่เผยแพร่ 2020-02-19
คะแนน 3.24/5 รวมทั้งหมด 75 คะแนน
ผู้พัฒนา Petko Ditchev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/petko10/real-time-tab-sync
URL หน้าช่วยเหลือ https://github.com/petko10/real-time-tab-sync/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Real-Time Tab Sync",
    "version": "1.3.4",
    "manifest_version": 2,
    "description": "Keeps the same tabs on all your machines. Tab changes are applied in real time on all of your devices.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icon19grey.png",
            "38": "icon38grey.png"
        },
        "default_title": "Default",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "tabs",
        "webRequest",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}