Word Counter

Counting the amount of a given word in the current page

Cos'è Word Counter?

Word Counter è un'estensione di Chrome sviluppata da chatjonsmedia, e la sua funzione principale è "Counting the amount of a given word in the current page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Word Counter

Scarica i file di estensione Word Counter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Word Counter is a fun extension that will let the user count how many words appear in a page.                    

Informazioni di Base sull'Estensione

Nome Word Counter Word Counter
ID ledamfbeelplcjfjclabbckmglgkmhdf
URL Ufficiale https://chrome.google.com/webstore/detail/word-counter/ledamfbeelplcjfjclabbckmglgkmhdf
Descrizione Counting the amount of a given word in the current page
Dimensione del File 14.55 KB
Conteggio Installazioni 2,959
Versione Corrente 1
Ultimo Aggiornamento 2022-12-05
Data di Pubblicazione 2022-12-05
Sviluppatore chatjonsmedia
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://home.ujhimselvepost.info/
URL della Pagina di Aiuto https://home.ujhimselvepost.info/contact.html
Lingue Supportate 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"
            ]
        }
    ]
}