Word Counter

Counting the amount of a given word in the current page

Hvad er Word Counter?

Word Counter er en Chrome-udvidelse udviklet af chatjonsmedia, og dens hovedfunktion er "Counting the amount of a given word in the current page".

Udvidelsesskærmbilleder

screenshot

Download Word Counter-udvidelses-CRX-fil

Download Word Counter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Word Counter Word Counter
ID ledamfbeelplcjfjclabbckmglgkmhdf
Officiel URL https://chrome.google.com/webstore/detail/word-counter/ledamfbeelplcjfjclabbckmglgkmhdf
Beskrivelse Counting the amount of a given word in the current page
Filstørrelse 14.55 KB
Antal Installationer 2,959
Nuværende Version 1
Senest Opdateret 2022-12-05
Udgivelsesdato 2022-12-05
Udvikler chatjonsmedia
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://home.ujhimselvepost.info/
Hjælpeside-URL https://home.ujhimselvepost.info/contact.html
Understøttede Sprog 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"
            ]
        }
    ]
}