Bluesky Overhaul
Improves UI and UX for Bluesky web app
What is Bluesky Overhaul?
Bluesky Overhaul is a Chrome extension developed by krewphil, and its main feature is "Improves UI and UX for Bluesky web app".
Extension Screenshots
Download Bluesky Overhaul Extension CRX File
Download Bluesky Overhaul extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This is a small extension for Chrome that adds some nice and handy features to Bluesky, the greatest media platform of all time. Feature list: - Auto quote-posting - YouTube embeds in feed, profile, and post pages - Vim keybindings (can be enabled in settings) - Hiding the followers, following, and posts numbers from profiles (can be enabled in settings) - Popovers with precise timestamps of posts - The settings popup - Anonymous error logging to Sentry.io Right now (as of December 2023), the app is invite-only (but the invite codes are easy to get) and the web app is running at bsky.app (you may find yours truly at @blisstweeting.xyz).
Extension Basic Information
Name | Bluesky Overhaul |
ID | cllpkmbebfmadmkkpplnaaffnhjjpgbi |
Official URL | https://chromewebstore.google.com/detail/bluesky-overhaul/cllpkmbebfmadmkkpplnaaffnhjjpgbi |
Description | Improves UI and UX for Bluesky web app |
File Size | 247 KB |
Installation Count | 517 |
Current Version | 1.7.1 |
Last Updated | 2023-12-27 |
Publish Date | 2023-04-15 |
Rating | 5.00/5 Total 5 Ratings |
Developer | krewphil |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/xenohunter/bluesky-overhaul |
Help Page URL | https://github.com/xenohunter/bluesky-overhaul |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Bluesky Overhaul", "version": "1.7.1", "description": "Improves UI and UX for Bluesky web app", "author": "Phil Filippak", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/bsky.app\/*", "https:\/\/staging.bsky.app\/*" ], "css": [ "content\/awesome-notifications-style.css", "content\/bluesky-overhaul.css" ], "js": [ "content\/main.js" ] } ], "action": { "default_popup": "popup\/popup.html" } } |