Open Tabs Sync
Sync open tabs between devices
Cos'è Open Tabs Sync?
Open Tabs Sync è un'estensione di Chrome sviluppata da syriusz, e la sua funzione principale è "Sync open tabs between devices".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Open Tabs Sync
Scarica i file di estensione Open Tabs Sync in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Open Tabs Sync |
ID | ajfhocnnncognkminddbfadkgdjnlmln |
URL Ufficiale | https://chromewebstore.google.com/detail/open-tabs-sync/ajfhocnnncognkminddbfadkgdjnlmln |
Descrizione | Sync open tabs between devices |
Dimensione del File | 22.52 KB |
Conteggio Installazioni | 257 |
Versione Corrente | 3.2.7 |
Ultimo Aggiornamento | 2024-01-16 |
Data di Pubblicazione | 2023-08-19 |
Sviluppatore | syriusz |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } ] } |