Make your mouse cursor a Pink Elite!

This extension turns your mouse cursor into a pink elite! Works on many HTTP and HTTPS sites.

Cos'è Make your mouse cursor a Pink Elite!?

Make your mouse cursor a Pink Elite! è un'estensione di Chrome sviluppata da Big Pete, e la sua funzione principale è "This extension turns your mouse cursor into a pink elite! Works on many HTTP and HTTPS sites.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Make your mouse cursor a Pink Elite!

Scarica i file di estensione Make your mouse cursor a Pink Elite! 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

                        This extension turns your mouse cursor into a pink elite sock on most websites!

Permissions
This extension needs permission to "read and change all your data on the websites you visit" because it uses CSS to change the mouse cursor.  (CSS has the potential to significantly change how a website looks.)

How to Disable/Remove
To temporarily disable this extension, type chrome://extensions in the address bar and then hit enter/return.  Then uncheck the toggle.  To delete this extension, click "Remove" (trash can icon on older versions of Chrome).

Version 1.3.0 and newer adapted from here:
https://github.com/lateral/chrome-extension-blogpost

======================================
Release Notes

v. 1.5.0 Release Notes 12/4/2023
-Christmas came early!  Your favorite extension now supports Manifest V3.  Merry Christmas! 🎁🎄

v. 1.4.0 Release Notes 10/18/2023
-The update you've been patiently waiting years for!  Instead of hotlinking the mouse cursor image, it is now pulled from a local file.  Imagine the bandwidth you'll save!

v. 1.3.1 Release Notes 5/9/2021
-New Icon
-Updated store description

v. 1.3.0 Release Notes 5/8/2021
-All new code!  Based on a template from lateral.io
-Removed permissions that are unnecessary
-Changed cursor from pair of elites to a single elite, which is now a PNG with transparent background!
-Now works on many http AND https sites!

v. 1.1.0 Release Notes 1/2016
-Cleaned up CSS on the settings Page
-Updated Chrome Web Store Icon, Screenshots, and Description                    

Informazioni di Base sull'Estensione

Nome Make your mouse cursor a Pink Elite! Make your mouse cursor a Pink Elite!
ID fahhhocdngpbgbponkhnkbbnfnemblcp
URL Ufficiale https://chromewebstore.google.com/detail/make-your-mouse-cursor-a/fahhhocdngpbgbponkhnkbbnfnemblcp
Descrizione This extension turns your mouse cursor into a pink elite! Works on many HTTP and HTTPS sites.
Dimensione del File 53.43 KB
Conteggio Installazioni 101
Versione Corrente 1.5.0
Ultimo Aggiornamento 2023-12-05
Data di Pubblicazione 2016-01-20
Valutazione 1.63/5 Totale 8 Valutazioni
Sviluppatore Big Pete
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Make your mouse cursor a Pink Elite!",
    "version": "1.5.0",
    "description": "This extension turns your mouse cursor into a pink elite! Works on many HTTP and HTTPS sites.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/elite.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}