Remove Blink

Removes cursor blink in Google Docs.

Vad är Remove Blink?

Remove Blink är en Chrome-tillägg utvecklad av Jeremiah Baclig, och dess huvudfunktion är "Removes cursor blink in Google Docs.".

Tilläggsskärmbilder

screenshot

Ladda ner Remove Blink-förlängningens CRX-fil

Ladda ner Remove Blink-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Remove Blink Remove Blink
ID fnaaokkdhakddpnkbmghogjelkakgpkg
Officiell webbadress https://chromewebstore.google.com/detail/remove-blink/fnaaokkdhakddpnkbmghogjelkakgpkg
Beskrivning Removes cursor blink in Google Docs.
Filstorlek 11.92 KB
Antal Installationer 481
Aktuell Version 1.0.1
Senast Uppdaterad 2023-11-10
Publiceringsdatum 2021-01-05
Betyg 5.00/5 Totalt 10 Betyg
Utvecklare Jeremiah Baclig
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://github.com/jeremiahbaclig/Cursor-Blink
Stödda Språk 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"
            ]
        }
    ]
}