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 |
电子邮箱 | [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" } ] } |