Word Count

Display the number of words and characters within highlight in contextMenu and bottom right

Was ist Word Count?

Word Count ist eine Chrome-Erweiterung, die von Zeno entwickelt wurde, und ihr Hauptmerkmal ist "Display the number of words and characters within highlight in contextMenu and bottom right".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Word Count-Erweiterungs-CRX-Datei herunterladen

Laden Sie Word Count-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Display the number of words and characters within highlight in context menu and bottom right

On highlight, show the word count and the number of characters immediately.

Settings to change to 
- dark count box 
- hide count box

Chrome extension word counter to easily count words & characters                    

Grundlegende Informationen zur Erweiterung

Name Word Count Word Count
ID inaklojbeljbfmkkpjfmjjgehckpeohf
Offizielle URL https://chromewebstore.google.com/detail/word-count/inaklojbeljbfmkkpjfmjjgehckpeohf
Beschreibung Display the number of words and characters within highlight in contextMenu and bottom right
Dateigröße 15.59 KB
Installationsanzahl 53
Aktuelle Version 0.2
Letztes Update 2022-06-09
Veröffentlichungsdatum 2022-06-09
Entwickler Zeno
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.buymeacoffee.com/WhyNotBeFrg
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Word Count",
    "version": "0.2",
    "description": "Display the number of words and characters within highlight in contextMenu and bottom right",
    "icons": {
        "16": "icons\/logo.png",
        "48": "icons\/logo.png",
        "128": "icons\/logo.png"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "scripting",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "action": {
        "default_title": "test",
        "default_popup": "key.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "test.js"
            ]
        }
    ]
}