Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "SyncClipper Extension", "description": "Sync your clipboard across all Chrome tabs and devices.", "version": "1.0", "permissions": [ "activeTab", "scripting", "clipboardRead", "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "clip.png" } }, "host_permissions": [ "https:\/\/www.syncclipper.com\/*", "https:\/\/clip-board-sync.vercel.app\/*", "<all_urls>" ], "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ] } ], "commands": { "sync-clipboard": { "suggested_key": { "default": "Ctrl+Shift+S" }, "description": "Sync clipboard now" } } }