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": "Tweet Sync for Bluesky", "version": "0.8.5", "description": "Sync tweets from Twitter to Bluesky", "permissions": [ "storage", "activeTab", "tabs" ], "host_permissions": [ "https:\/\/twitter.com\/*", "https:\/\/x.com\/*", "https:\/\/bsky.app\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/x.com\/*" ], "js": [ "twitter-content.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/bsky.app\/*" ], "js": [ "bluesky-content.js" ], "run_at": "document_end" } ], "action": { "default_popup": "popup.html", "default_icon": { "128": "icon128.png" } }, "icons": { "128": "icon128.png" } }