Blueswan
sky without annoying numbers.
Co to jest Blueswan?
Blueswan to rozszerzenie Chrome opracowane przez kawarimidoll, a jego główną funkcją jest „sky without annoying numbers.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Blueswan
Pobierz pliki rozszerzeń Blueswan w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension removes annoying numbers from Bluesky. - In posts - replies - reposts - likes - In profile - followers - following - posts - In sidebar - notifications - In notifications-list - details You can choose to show them, show them on hover, or hide them. Storage permission is required to save settings.
Podstawowe informacje o rozszerzeniu
Nazwa | Blueswan |
ID | cnenmkcimleaeklmeflfnejicbhndlko |
Oficjalny URL | https://chromewebstore.google.com/detail/blueswan/cnenmkcimleaeklmeflfnejicbhndlko |
Opis | sky without annoying numbers. |
Rozmiar pliku | 15.81 KB |
Liczba instalacji | 121 |
Aktualna Wersja | 1.6.6 |
Ostatnia Aktualizacja | 2024-01-04 |
Data Publikacji | 2023-04-29 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | kawarimidoll |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/kawarimidoll/blueswan |
Adres URL Strony Pomocy | https://github.com/kawarimidoll/blueswan/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Blueswan", "author": "kawarimidoll", "version": "1.6.6", "description": "sky without annoying numbers.", "content_scripts": [ { "matches": [ "https:\/\/bsky.app\/*", "https:\/\/staging.bsky.app\/*" ], "js": [ ".\/scripts\/common.js", ".\/scripts\/content_scripts.js" ], "css": [ ".\/styles\/content_scripts.css" ] } ], "icons": { "16": ".\/images\/blueswan-16.png", "128": ".\/images\/blueswan-128.png" }, "action": { "default_icon": { "16": ".\/images\/blueswan-16.png", "128": ".\/images\/blueswan-128.png" }, "default_popup": ".\/pages\/popup.html" }, "permissions": [ "storage" ] } |