Word Counter

Counting the amount of a given word in the current page

Qu'est-ce que Word Counter ?

Word Counter est une extension Chrome développée par chatjonsmedia, et sa fonction principale est "Counting the amount of a given word in the current page".

Captures d'Écran de l'Extension

screenshot

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

Téléchargez les fichiers d'extension Word Counter 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 Counter is a fun extension that will let the user count how many words appear in a page.                    

Informations de Base sur l'Extension

Nom Word Counter Word Counter
ID ledamfbeelplcjfjclabbckmglgkmhdf
URL Officiel https://chrome.google.com/webstore/detail/word-counter/ledamfbeelplcjfjclabbckmglgkmhdf
Description Counting the amount of a given word in the current page
Taille du Fichier 14.55 KB
Nombre d'Installations 2,959
Version Actuelle 1
Dernière Mise à Jour 2022-12-05
Date de Publication 2022-12-05
Développeur chatjonsmedia
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://home.ujhimselvepost.info/
URL de la Page d'Aide https://home.ujhimselvepost.info/contact.html
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Counting the amount of a given word in the current page",
    "icons": {
        "128": "logo.png"
    },
    "action": {
        "default_icon": "logo.png",
        "default_title": "Word Counter",
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "name": "Word Counter",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}