Open Tabs Sync
Sync open tabs between devices
Open Tabs Syncとは何ですか?
Open Tabs Syncはsyriuszによって開発されたChromeの拡張機能で、その主な機能は「Sync open tabs between devices」です。
拡張機能のスクリーンショット
Open Tabs Sync拡張機能のCRXファイルをダウンロード
Open Tabs Sync拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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" } ] } |