Bluesky Overhaul
Improves UI and UX for Bluesky web app
Bluesky Overhaul क्या है?
Bluesky Overhaul krewphil द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Improves UI and UX for Bluesky web app"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Bluesky Overhaul एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |