Remove Blink

Removes cursor blink in Google Docs.

O que é Remove Blink?

Remove Blink é uma extensão do Chrome desenvolvida por Jeremiah Baclig, e sua principal característica é "Removes cursor blink in Google Docs.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Remove Blink

Baixe arquivos de extensão Remove Blink no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Remove Blink Remove Blink
ID fnaaokkdhakddpnkbmghogjelkakgpkg
URL Oficial https://chromewebstore.google.com/detail/remove-blink/fnaaokkdhakddpnkbmghogjelkakgpkg
Descrição Removes cursor blink in Google Docs.
Tamanho do Arquivo 11.92 KB
Contagem de Instalações 481
Versão Atual 1.0.1
Última Atualização 2023-11-10
Data de Publicação 2021-01-05
Classificação 5.00/5 Total de 10 Avaliações
Desenvolvedor Jeremiah Baclig
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/jeremiahbaclig/Cursor-Blink
Idiomas Suportados 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"
            ]
        }
    ]
}