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 "http://127.0.0.1:8888/*",
14 "http://localhost:8888/*",
15 "https://atlast.byarielm.fyi/*"
16 ],
17 "background": {
18 "service_worker": "background/service-worker.js",
19 "type": "module"
20 },
21 "content_scripts": [
22 {
23 "matches": [
24 "https://twitter.com/*",
25 "https://x.com/*"
26 ],
27 "js": ["content/index.js"],
28 "run_at": "document_idle"
29 }
30 ],
31 "action": {
32 "default_popup": "popup/popup.html",
33 "default_icon": {
34 "16": "assets/icon-16.png",
35 "48": "assets/icon-48.png",
36 "128": "assets/icon-128.png"
37 }
38 },
39 "icons": {
40 "16": "assets/icon-16.png",
41 "48": "assets/icon-48.png",
42 "128": "assets/icon-128.png"
43 }
44}