Blueswan

sky without annoying numbers.

Vad är Blueswan?

Blueswan är en Chrome-tillägg utvecklad av kawarimidoll, och dess huvudfunktion är "sky without annoying numbers.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Blueswan-förlängningens CRX-fil

Ladda ner Blueswan-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Blueswan Blueswan
ID cnenmkcimleaeklmeflfnejicbhndlko
Officiell webbadress https://chromewebstore.google.com/detail/blueswan/cnenmkcimleaeklmeflfnejicbhndlko
Beskrivning sky without annoying numbers.
Filstorlek 15.81 KB
Antal Installationer 121
Aktuell Version 1.6.6
Senast Uppdaterad 2024-01-04
Publiceringsdatum 2023-04-29
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare kawarimidoll
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/kawarimidoll/blueswan
Hjälpsida URL https://github.com/kawarimidoll/blueswan/issues
Stödda Språk 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"
    ]
}