Word Count on Webpage By Warp Vessel

A simple chrome extension that allows you to instantly see the word count on the current webpage.

Qu'est-ce que Word Count on Webpage By Warp Vessel ?

Word Count on Webpage By Warp Vessel est une extension Chrome développée par Warp Vessel Apps, et sa fonction principale est "A simple chrome extension that allows you to instantly see the word count on the current webpage.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Word Count on Webpage By Warp Vessel

Téléchargez les fichiers d'extension Word Count on Webpage By Warp Vessel 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

                        A simple chrome extension that allows you to instantly see the word count on the current webpage.                    

Informations de Base sur l'Extension

Nom Word Count on Webpage By Warp Vessel Word Count on Webpage By Warp Vessel
ID poojadbpgpkiokkenipihadhecgphkfh
URL Officiel https://chromewebstore.google.com/detail/word-count-on-webpage-by/poojadbpgpkiokkenipihadhecgphkfh
Description A simple chrome extension that allows you to instantly see the word count on the current webpage.
Taille du Fichier 6.48 KB
Nombre d'Installations 321
Version Actuelle 1.02
Dernière Mise à Jour 2019-05-30
Date de Publication 2019-05-24
Évaluation 3.75/5 Total 4 Évaluations
Développeur Warp Vessel Apps
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": "Word Count on Webpage By Warp Vessel",
    "version": "1.02",
    "manifest_version": 2,
    "permissions": [
        "tabs"
    ],
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Word Count By Warp Vessel",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}