Count selected characters and words

A simple tool to count selected characters and words.

Hvad er Count selected characters and words?

Count selected characters and words er en Chrome-udvidelse udviklet af http://riangraphics.com, og dens hovedfunktion er "A simple tool to count selected characters and words.".

Udvidelsesskærmbilleder

screenshot

Download Count selected characters and words-udvidelses-CRX-fil

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

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

Grundlæggende oplysninger om udvidelsen

Navn Count selected characters and words Count selected characters and words
ID pdbaijkfobjcdkppnnmjddjgfhjdpoge
Officiel URL https://chrome.google.com/webstore/detail/count-selected-characters/pdbaijkfobjcdkppnnmjddjgfhjdpoge
Beskrivelse A simple tool to count selected characters and words.
Filstørrelse 7.42 KB
Antal Installationer 75
Nuværende Version 1.0.4
Senest Opdateret 2018-10-09
Udgivelsesdato 2018-10-09
Bedømmelse 4.50/5 Samlet 4 Bedømmelser
Udvikler http://riangraphics.com
Betalingsmetode free
Udvidelseswebsted https://riangraphics.com/highlithed-word-counter/
Hjælpeside-URL https://riangraphics.com/highlithed-word-counter/#faq
Understøttede Sprog 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"
    ]
}