Яeverse Word Count

Яeverse the word count on Google Docs

Qu'est-ce que Яeverse Word Count ?

Яeverse Word Count est une extension Chrome développée par Freeassassin, et sa fonction principale est "Яeverse the word count on Google Docs".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Яeverse Word Count

Téléchargez les fichiers d'extension Яeverse Word Count au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Яeverse Word Count Яeverse Word Count
ID djepmdeahjglglnoalgieijekmkafoed
URL Officiel https://chromewebstore.google.com/detail/%D1%8Feverse-word-count/djepmdeahjglglnoalgieijekmkafoed
Description Яeverse the word count on Google Docs
Taille du Fichier 17.47 KB
Nombre d'Installations 32
Version Actuelle 0.10
Dernière Mise à Jour 2020-11-19
Date de Publication 2020-08-31
Évaluation 5.00/5 Total 2 Évaluations
Développeur Freeassassin
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}