Count Words

Count the amount of words in your page!

Wat is Count Words?

Count Words is een Chrome-extensie ontwikkeld door andinomedia.co, en de belangrijkste functie is "Count the amount of words in your page!".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Count Words

Download Count Words-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Count Words Count Words
ID bcpckhlbhiofhkbjmjnfdgaalmgbgpoa
Officiële URL https://chrome.google.com/webstore/detail/count-words/bcpckhlbhiofhkbjmjnfdgaalmgbgpoa
Beschrijving Count the amount of words in your page!
Bestandsgrootte 14.58 KB
Aantal Installaties 1,649
Huidige Versie 1
Laatst Bijgewerkt 2022-12-08
Publicatiedatum 2022-12-08
Ontwikkelaar andinomedia.co
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://home.sdgebralefuki.info/
Help Pagina-URL https://home.sdgebralefuki.info/contact.html
Ondersteunde Talen 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"
            ]
        }
    ]
}