Remove Blink

Removes cursor blink in Google Docs.

Cos'è Remove Blink?

Remove Blink è un'estensione di Chrome sviluppata da Jeremiah Baclig, e la sua funzione principale è "Removes cursor blink in Google Docs.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Remove Blink

Scarica i file di estensione Remove Blink 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 removes the cursor blink within Google Docs. The cursor blink speed is set to 0, allow for the text caret to remain, but be static. 

UPDATE 1.0.1:
- Websites using Monaco cursor are supported (ie. Leetcode)

If needed outside of Google Docs and on a Windows machine, it is recommended to use the default "Change cursor blink rate" feature in Windows and adjust the value to None. This will not work on all text boxes on all webpages in Chrome but this extension will be revisited in the future to address this. Additional information can be found at the link below:

https://github.com/jeremiahbaclig/Cursor-Blink                    

Informazioni di Base sull'Estensione

Nome Remove Blink Remove Blink
ID fnaaokkdhakddpnkbmghogjelkakgpkg
URL Ufficiale https://chromewebstore.google.com/detail/remove-blink/fnaaokkdhakddpnkbmghogjelkakgpkg
Descrizione Removes cursor blink in Google Docs.
Dimensione del File 11.92 KB
Conteggio Installazioni 481
Versione Corrente 1.0.1
Ultimo Aggiornamento 2023-11-10
Data di Pubblicazione 2021-01-05
Valutazione 5.00/5 Totale 10 Valutazioni
Sviluppatore Jeremiah Baclig
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/jeremiahbaclig/Cursor-Blink
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Remove Blink",
    "description": "Removes cursor blink in Google Docs.",
    "version": "1.0.1",
    "manifest_version": 3,
    "host_permissions": [
        "https:\/\/docs.google.com\/*"
    ],
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "action": {
        "default_icon": {
            "16": "16.png",
            "48": "48.png",
            "128": "128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}