Cursorify

Modify your cursors appearance in browser

Was ist Cursorify?

Cursorify ist eine Chrome-Erweiterung, die von refractiontech entwickelt wurde, und ihr Hauptmerkmal ist "Modify your cursors appearance in browser".

Erweiterungsscreenshots

screenshot

Cursorify-Erweiterungs-CRX-Datei herunterladen

Laden Sie Cursorify-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

                        The extensions allows you to change the default cursor suggesting you a huge amount of cursors with different coloring and structure.                    

Grundlegende Informationen zur Erweiterung

Name Cursorify Cursorify
ID edgfeonoalmppnpdjiedepmhknmfaipf
Offizielle URL https://chromewebstore.google.com/detail/cursorify/edgfeonoalmppnpdjiedepmhknmfaipf
Beschreibung Modify your cursors appearance in browser
Dateigröße 3.9 MB
Installationsanzahl 21
Aktuelle Version 1.1.0
Letztes Update 2020-03-04
Veröffentlichungsdatum 2020-03-03
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler refractiontech
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cursorify",
    "short_name": "Cursorify",
    "version": "1.1.0",
    "description": "Modify your cursors appearance in browser",
    "author": "Refraction.Tech",
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "media\/logo16.png",
            "32": "media\/logo32.png",
            "48": "media\/logo48.png",
            "128": "media\/logo128.png"
        }
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "storage",
        "unlimitedStorage",
        "activeTab",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "all_frames": true
        }
    ]
}