Open Tabs Sync
Sync open tabs between devices
Qu'est-ce que Open Tabs Sync ?
Open Tabs Sync est une extension Chrome développée par syriusz, et sa fonction principale est "Sync open tabs between devices".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Open Tabs Sync
Téléchargez les fichiers d'extension Open Tabs Sync au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Open Tabs Sync |
ID | ajfhocnnncognkminddbfadkgdjnlmln |
URL Officiel | https://chromewebstore.google.com/detail/open-tabs-sync/ajfhocnnncognkminddbfadkgdjnlmln |
Description | Sync open tabs between devices |
Taille du Fichier | 22.52 KB |
Nombre d'Installations | 257 |
Version Actuelle | 3.2.7 |
Dernière Mise à Jour | 2024-01-16 |
Date de Publication | 2023-08-19 |
Développeur | syriusz |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } ] } |