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 "cookies"
10 ],
11 "host_permissions": [
12 "https://twitter.com/*",
13 "https://x.com/*",
14 "http://127.0.0.1:8888/*",
15 "http://localhost:8888/*",
16 "https://atlast.byarielm.fyi/*"
17 ],
18 "background": {
19 "scripts": ["background/service-worker.js"],
20 "type": "module"
21 },
22 "content_scripts": [
23 {
24 "matches": [
25 "https://twitter.com/*",
26 "https://x.com/*"
27 ],
28 "js": ["content/index.js"],
29 "run_at": "document_idle"
30 }
31 ],
32 "action": {
33 "default_popup": "popup/popup.html",
34 "default_icon": {
35 "16": "assets/icon-16.png",
36 "48": "assets/icon-48.png",
37 "128": "assets/icon-128.png"
38 }
39 },
40 "icons": {
41 "16": "assets/icon-16.png",
42 "48": "assets/icon-48.png",
43 "128": "assets/icon-128.png"
44 },
45 "browser_specific_settings": {
46 "gecko": {
47 "id": "atlast-importer@byarielm.fyi",
48 "strict_min_version": "109.0"
49 }
50 }
51}