ATlast — you'll never need to find your favorites on another platform again. Find your favs in the ATmosphere.
atproto

add host permissions for ATlast API servers

Fix CORS blocking extension health checks and API calls:
- Add http://127.0.0.1:8888/* (dev)
- Add http://localhost:8888/* (alt dev)
- Add https://atlast.byarielm.fyi/* (prod)

Extension can now make requests to ATlast servers without
CORS errors.

byarielm.fyi a8857408 6b352a56

verified
Changed files
+4 -1
packages
extension
+4 -1
packages/extension/manifest.json
··· 9 9 ], 10 10 "host_permissions": [ 11 11 "https://twitter.com/*", 12 - "https://x.com/*" 12 + "https://x.com/*", 13 + "http://127.0.0.1:8888/*", 14 + "http://localhost:8888/*", 15 + "https://atlast.byarielm.fyi/*" 13 16 ], 14 17 "background": { 15 18 "service_worker": "background/service-worker.js",