Follow Cursor

Adds custom mouse pointer that rotate in he way that you steer it

Cos'è Follow Cursor?

Follow Cursor è un'estensione di Chrome sviluppata da thelidcer, e la sua funzione principale è "Adds custom mouse pointer that rotate in he way that you steer it".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Follow Cursor

Scarica i file di estensione Follow Cursor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Adds custom mouse pointer that rotates in the way you steer it                    

Informazioni di Base sull'Estensione

Nome Follow Cursor Follow Cursor
ID dphiobephcfbbeeimmefecgjeaimkdhk
URL Ufficiale https://chrome.google.com/webstore/detail/follow-cursor/dphiobephcfbbeeimmefecgjeaimkdhk
Descrizione Adds custom mouse pointer that rotate in he way that you steer it
Dimensione del File 41.58 KB
Conteggio Installazioni 43
Versione Corrente 1.0.1
Ultimo Aggiornamento 2020-10-05
Data di Pubblicazione 2020-10-05
Valutazione 2.33/5 Totale 3 Valutazioni
Sviluppatore thelidcer
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Follow Cursor",
    "icons": {
        "48": "assets\/images\/icon_48.png",
        "128": "assets\/images\/icon_128.png"
    },
    "web_accessible_resources": [
        "assets\/css\/bootstrap.css",
        "assets\/css\/cursor.css",
        "assets\/css\/popup.css",
        "assets\/images\/icon_128.png",
        "assets\/images\/icon_48.png",
        "assets\/images\/normal.svg"
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "assets\/scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "assets\/images\/icon_48.png",
        "default_popup": "assets\/html\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "assets\/scripts\/content.js"
            ],
            "css": [
                "assets\/css\/cursor.css"
            ],
            "run_at": "document_end"
        }
    ],
    "version": "1.0.1",
    "description": "Adds custom mouse pointer that rotate in he way that you steer it"
}