Blueswan

sky without annoying numbers.

Was ist Blueswan?

Blueswan ist eine Chrome-Erweiterung, die von kawarimidoll entwickelt wurde, und ihr Hauptmerkmal ist "sky without annoying numbers.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Blueswan-Erweiterungs-CRX-Datei herunterladen

Laden Sie Blueswan-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Blueswan Blueswan
ID cnenmkcimleaeklmeflfnejicbhndlko
Offizielle URL https://chromewebstore.google.com/detail/blueswan/cnenmkcimleaeklmeflfnejicbhndlko
Beschreibung sky without annoying numbers.
Dateigröße 15.81 KB
Installationsanzahl 121
Aktuelle Version 1.6.6
Letztes Update 2024-01-04
Veröffentlichungsdatum 2023-04-29
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler kawarimidoll
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/kawarimidoll/blueswan
Hilfeseite URL https://github.com/kawarimidoll/blueswan/issues
Unterstützte Sprachen 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"
    ]
}