Bluesky Overhaul

Improves UI and UX for Bluesky web app

什么是Bluesky Overhaul?

Bluesky Overhaul是由krewphil开发的Chrome扩展程序,该扩展的主要功能是“Improves UI and UX for Bluesky web app”。

扩展截图

screenshot
screenshot

下载Bluesky Overhaul扩展crx文件

下载Bluesky Overhaul扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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).                    

扩展基本信息

名称 Bluesky Overhaul Bluesky Overhaul
ID cllpkmbebfmadmkkpplnaaffnhjjpgbi
官方URL https://chromewebstore.google.com/detail/bluesky-overhaul/cllpkmbebfmadmkkpplnaaffnhjjpgbi
简介 Improves UI and UX for Bluesky web app
文件大小 247 KB
安装次数 517
当前版本 1.7.1
更新时间 2023-12-27
上架时间 2023-04-15
评分 5.00/5 共5次评分
开发者 krewphil
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/xenohunter/bluesky-overhaul
帮助页面URL https://github.com/xenohunter/bluesky-overhaul
支持的语言 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"
    }
}