Word Count

Display the number of words and characters within highlight in contextMenu and bottom right

Qu'est-ce que Word Count ?

Word Count est une extension Chrome développée par Zeno, et sa fonction principale est "Display the number of words and characters within highlight in contextMenu and bottom right".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

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

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

                        Display the number of words and characters within highlight in context menu and bottom right

On highlight, show the word count and the number of characters immediately.

Settings to change to 
- dark count box 
- hide count box

Chrome extension word counter to easily count words & characters                    

Informations de Base sur l'Extension

Nom Word Count Word Count
ID inaklojbeljbfmkkpjfmjjgehckpeohf
URL Officiel https://chromewebstore.google.com/detail/word-count/inaklojbeljbfmkkpjfmjjgehckpeohf
Description Display the number of words and characters within highlight in contextMenu and bottom right
Taille du Fichier 15.59 KB
Nombre d'Installations 53
Version Actuelle 0.2
Dernière Mise à Jour 2022-06-09
Date de Publication 2022-06-09
Développeur Zeno
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.buymeacoffee.com/WhyNotBeFrg
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Word Count",
    "version": "0.2",
    "description": "Display the number of words and characters within highlight in contextMenu and bottom right",
    "icons": {
        "16": "icons\/logo.png",
        "48": "icons\/logo.png",
        "128": "icons\/logo.png"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "action": {
        "default_title": "test",
        "default_popup": "key.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "test.js"
            ]
        }
    ]
}