Word Counter

Counting the amount of a given word in the current page

What is Word Counter?

Word Counter is a Chrome extension developed by chatjonsmedia, and its main feature is "Counting the amount of a given word in the current page".

Extension Screenshots

screenshot

Download Word Counter Extension CRX File

Download Word Counter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Word Counter Word Counter
ID ledamfbeelplcjfjclabbckmglgkmhdf
Official URL https://chrome.google.com/webstore/detail/word-counter/ledamfbeelplcjfjclabbckmglgkmhdf
Description Counting the amount of a given word in the current page
File Size 14.55 KB
Installation Count 2,959
Current Version 1
Last Updated 2022-12-05
Publish Date 2022-12-05
Developer chatjonsmedia
Email [email protected]
Payment Type free
Extension Website https://home.ujhimselvepost.info/
Help Page URL https://home.ujhimselvepost.info/contact.html
Supported Languages 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"
            ]
        }
    ]
}