Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Bluesky Follower Info", "description": "Display users profile descriptions and stats in notifications feed and starter-packs.", "version": "1.8.0", "icons": { "32": "assets\/icon-32.png", "64": "assets\/icon-64.png", "128": "assets\/icon-128.png" }, "permissions": [ "scripting", "storage" ], "host_permissions": [ "*:\/\/*.bsky.app\/*" ], "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "*:\/\/*.bsky.app\/*" ], "js": [ "content\/content.js" ], "css": [ "content\/content.css" ] } ], "options_ui": { "page": "options\/index.html" } }