Count selected characters and words

A simple tool to count selected characters and words.

Was ist Count selected characters and words?

Count selected characters and words ist eine Chrome-Erweiterung, die von http://riangraphics.com entwickelt wurde, und ihr Hauptmerkmal ist "A simple tool to count selected characters and words.".

Erweiterungsscreenshots

screenshot

Count selected characters and words-Erweiterungs-CRX-Datei herunterladen

Laden Sie Count selected characters and words-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

                        Count selected characters and words on the fly, just select the text and get the result, to enable it just save the settings                    

Grundlegende Informationen zur Erweiterung

Name Count selected characters and words Count selected characters and words
ID pdbaijkfobjcdkppnnmjddjgfhjdpoge
Offizielle URL https://chrome.google.com/webstore/detail/count-selected-characters/pdbaijkfobjcdkppnnmjddjgfhjdpoge
Beschreibung A simple tool to count selected characters and words.
Dateigröße 7.42 KB
Installationsanzahl 75
Aktuelle Version 1.0.4
Letztes Update 2018-10-09
Veröffentlichungsdatum 2018-10-09
Bewertung 4.50/5 Insgesamt 4 Bewertungen
Entwickler http://riangraphics.com
Zahlungsart free
Erweiterungswebsite https://riangraphics.com/highlithed-word-counter/
Hilfeseite URL https://riangraphics.com/highlithed-word-counter/#faq
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Count selected characters and words",
    "description": "A simple tool to count selected characters and words.",
    "version": "1.0.4",
    "author": "RianGraphics",
    "browser_action": {
        "default_icon": "tab-icon.png",
        "default_popup": "index.html",
        "default_title": "Count selected characters and words"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "rc-styles.css"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}