Bluesky Overhaul

Improves UI and UX for Bluesky web app

Bluesky Overhaulคืออะไร?

Bluesky Overhaul เป็นส่วนขยายของ Chrome ที่พัฒนาโดย krewphil และคุณลักษณะหลักของมันคือ "Improves UI and UX for Bluesky web app"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bluesky Overhaul

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}