Яeverse Word Count

Яeverse the word count on Google Docs

Co je Яeverse Word Count?

Яeverse Word Count je rozšíření Chrome vyvinuté Freeassassin, a jeho hlavní funkcí je „Яeverse the word count on Google Docs“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Яeverse Word Count

Stáhněte si soubory rozšíření Яeverse Word Count ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Яeverse Word Count Яeverse Word Count
ID djepmdeahjglglnoalgieijekmkafoed
Oficiální URL https://chromewebstore.google.com/detail/%D1%8Feverse-word-count/djepmdeahjglglnoalgieijekmkafoed
Popis Яeverse the word count on Google Docs
Velikost souboru 17.47 KB
Počet instalací 32
Aktuální Verze 0.10
Poslední Aktualizace 2020-11-19
Datum Vydání 2020-08-31
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Freeassassin
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}