ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto
1{ 2 "manifest_version": 3, 3 "name": "ATlast Importer", 4 "version": "1.0.0", 5 "description": "Import your Twitter/X follows to find them on Bluesky", 6 "permissions": [ 7 "activeTab", 8 "storage" 9 ], 10 "host_permissions": [ 11 "https://twitter.com/*", 12 "https://x.com/*" 13 ], 14 "background": { 15 "service_worker": "background/service-worker.js", 16 "type": "module" 17 }, 18 "content_scripts": [ 19 { 20 "matches": [ 21 "https://twitter.com/*", 22 "https://x.com/*" 23 ], 24 "js": ["content/index.js"], 25 "run_at": "document_idle" 26 } 27 ], 28 "action": { 29 "default_popup": "popup/popup.html", 30 "default_icon": { 31 "16": "assets/icon-16.png", 32 "48": "assets/icon-48.png", 33 "128": "assets/icon-128.png" 34 } 35 }, 36 "icons": { 37 "16": "assets/icon-16.png", 38 "48": "assets/icon-48.png", 39 "128": "assets/icon-128.png" 40 } 41}