Web extension to disable geographic restrictions (moderation, age verification) on Bluesky's web app. (Mirrored from https://github.com/InvoxiPlayGames/bskyUnGeoBlock )
at main 9 lines 213 B view raw
1#!/bin/bash 2# prepare and delete leftovers 3mkdir out &> /dev/null 4rm out/bskyUnGeoBlock.zip &> /dev/null 5rm -rf extension/_metadata &> /dev/null 6# make the zip 7cd extension 8zip -r ../out/bskyUnGeoBlock.zip . 9cd ..