Skip to content

Instantly share code, notes, and snippets.

View Corrodias's full-sized avatar

Corrodias Corrodias

View GitHub Profile
@Corrodias
Corrodias / dev_console.js
Last active June 25, 2025 05:16
Unblock all users on Bluesky
(async () => {
// --- 0) extract the auth token and personal repository ID
let storage = JSON.parse(localStorage.getItem('BSKY_STORAGE'));
let token = storage.session.currentAccount.accessJwt;
let did = storage.session.currentAccount.did;
console.log('🔑 found token:', token.slice(0, 20) + '…');
let headers = {
'Authorization': `Bearer ${token}`,
'Content-Type': 'application/json',