Word Count Toolbar

Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords

Qu'est-ce que Word Count Toolbar ?

Word Count Toolbar est une extension Chrome développée par Johannes, et sa fonction principale est "Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

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

Téléchargez les fichiers d'extension Word Count Toolbar 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

                        Word Count Toolbar

Get text stats from any website everywhere! 

Word Count Toolbar is an extension for displaying text analytics on google searches and on any website you want. 

Simply type in your google query and the extension will inject display the text stats for every page. Use the right-click menu for displaying stats, on your current selected text, on any page.

- Word count
- Character count with/without spaces
- Sentence count
- Average Sentence length
- Paragraphs
- Headers
- Images
- Keywords                    

Informations de Base sur l'Extension

Nom Word Count Toolbar Word Count Toolbar
ID mbmhadmadlioegaemcblhbloheompkeb
URL Officiel https://chromewebstore.google.com/detail/word-count-toolbar/mbmhadmadlioegaemcblhbloheompkeb
Description Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords
Taille du Fichier 18.59 KB
Nombre d'Installations 202
Version Actuelle 0.1
Dernière Mise à Jour 2021-09-14
Date de Publication 2021-09-13
Évaluation 5.00/5 Total 4 Évaluations
Développeur Johannes
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Count Toolbar",
    "description": "Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords",
    "version": "0.1",
    "author": "Johannes",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Word Count Toolbar"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "https:\/\/www.google.com\/*",
        "contextMenus"
    ]
}