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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}