Яeverse Word Count

Яeverse the word count on Google Docs

O que é Яeverse Word Count?

Яeverse Word Count é uma extensão do Chrome desenvolvida por Freeassassin, e sua principal característica é "Яeverse the word count on Google Docs".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Яeverse Word Count

Baixe arquivos de extensão Яeverse Word Count 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

                        Aight listen, I was writing an essay for school that was due in like 30 minuets right? And I keep looking at the word counter for Google Docs and just having to do the mental math about how many more words I have to write to be done with it. So I was like you know what screw it, I'm gonna make a Chrome Extension to Яeverse the word counter on Google Docs. So I gave up on that essay and started coding this extension and now here we are! Anyway if you also are very easily distracted by the incapable word counter on Google Docs download this extension!                    

Informações Básicas da Extensão

Nome Яeverse Word Count Яeverse Word Count
ID djepmdeahjglglnoalgieijekmkafoed
URL Oficial https://chromewebstore.google.com/detail/%D1%8Feverse-word-count/djepmdeahjglglnoalgieijekmkafoed
Descrição Яeverse the word count on Google Docs
Tamanho do Arquivo 17.47 KB
Contagem de Instalações 32
Versão Atual 0.10
Última Atualização 2020-11-19
Data de Publicação 2020-08-31
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Freeassassin
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "\u042feverse Word Count",
    "version": "0.10",
    "description": "\u042feverse the word count on Google Docs",
    "manifest_version": 2,
    "permissions": [
        "https:\/\/docs.Google.com\/*",
        "input"
    ],
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "browser_action": {
        "default_popup": "code\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.Google.com\/*"
            ],
            "js": [
                "code\/inject.js"
            ]
        }
    ]
}