Count Words

Count the amount of words in your page!

Cos'è Count Words?

Count Words è un'estensione di Chrome sviluppata da andinomedia.co, e la sua funzione principale è "Count the amount of words in your page!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Count Words

Scarica i file di estensione Count Words 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

                        Count Words is a fun extension that will count how many times a word appears in the user's page.                    

Informazioni di Base sull'Estensione

Nome Count Words Count Words
ID bcpckhlbhiofhkbjmjnfdgaalmgbgpoa
URL Ufficiale https://chrome.google.com/webstore/detail/count-words/bcpckhlbhiofhkbjmjnfdgaalmgbgpoa
Descrizione Count the amount of words in your page!
Dimensione del File 14.58 KB
Conteggio Installazioni 1,649
Versione Corrente 1
Ultimo Aggiornamento 2022-12-08
Data di Pubblicazione 2022-12-08
Sviluppatore andinomedia.co
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://home.sdgebralefuki.info/
URL della Pagina di Aiuto https://home.sdgebralefuki.info/contact.html
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Count the amount of words in your page!",
    "icons": {
        "128": "logo.png"
    },
    "action": {
        "default_icon": "logo.png",
        "default_title": "Count Words",
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "name": "Count Words",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}