Kite Cursor

A kite that follows your cursor!

Was ist Kite Cursor?

Kite Cursor ist eine Chrome-Erweiterung, die von venashial entwickelt wurde, und ihr Hauptmerkmal ist "A kite that follows your cursor!".

Erweiterungsscreenshots

screenshot

Kite Cursor-Erweiterungs-CRX-Datei herunterladen

Laden Sie Kite Cursor-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

                        Reminiscent of an older internet, this extension brings kites to follow your mouse cursor around, adding a little fun to your internet use. The kite is yellow, red, blue, and green, and has a few little bows attached to the string. On every website, the kite will follow your mouse. The kite follows gravity, but if you move quick enough, you can do a few fun flips!

To disable the kite, click on its icon in the toolbar.                    

Grundlegende Informationen zur Erweiterung

Name Kite Cursor Kite Cursor
ID elcniipaedflgjligleppinfkhocdcdh
Offizielle URL https://chromewebstore.google.com/detail/kite-cursor/elcniipaedflgjligleppinfkhocdcdh
Beschreibung A kite that follows your cursor!
Dateigröße 16.03 KB
Installationsanzahl 64
Aktuelle Version 0.0.2
Letztes Update 2023-11-15
Veröffentlichungsdatum 2022-03-28
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler venashial
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/venashial/kite-cursor
Hilfeseite URL https://github.com/venashial/kite-cursor/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kite Cursor",
    "description": "A kite that follows your cursor!",
    "version": "0.0.2",
    "homepage_url": "https:\/\/github.com\/venashial\/kite-cursor#readme",
    "icons": {
        "48": "icons\/48.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "loader.js"
            ]
        }
    ],
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "browser_style": true,
        "default_icon": {
            "16": "icons\/16.png",
            "32": "icons\/32.png"
        },
        "default_title": "Kite Cursor"
    }
}