Remove Blink

Removes cursor blink in Google Docs.

Co to jest Remove Blink?

Remove Blink to rozszerzenie Chrome opracowane przez Jeremiah Baclig, a jego główną funkcją jest „Removes cursor blink in Google Docs.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Remove Blink

Pobierz pliki rozszerzeń Remove Blink w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Remove Blink Remove Blink
ID fnaaokkdhakddpnkbmghogjelkakgpkg
Oficjalny URL https://chromewebstore.google.com/detail/remove-blink/fnaaokkdhakddpnkbmghogjelkakgpkg
Opis Removes cursor blink in Google Docs.
Rozmiar pliku 11.92 KB
Liczba instalacji 481
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2023-11-10
Data Publikacji 2021-01-05
Ocena 5.00/5 Łącznie 10 Oceny
Deweloper Jeremiah Baclig
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/jeremiahbaclig/Cursor-Blink
Obsługiwane Języki 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"
            ]
        }
    ]
}