Count selected characters and words

A simple tool to count selected characters and words.

Cos'è Count selected characters and words?

Count selected characters and words è un'estensione di Chrome sviluppata da http://riangraphics.com, e la sua funzione principale è "A simple tool to count selected characters and words.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Count selected characters and words

Scarica i file di estensione Count selected characters and words in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Count selected characters and words Count selected characters and words
ID pdbaijkfobjcdkppnnmjddjgfhjdpoge
URL Ufficiale https://chrome.google.com/webstore/detail/count-selected-characters/pdbaijkfobjcdkppnnmjddjgfhjdpoge
Descrizione A simple tool to count selected characters and words.
Dimensione del File 7.42 KB
Conteggio Installazioni 75
Versione Corrente 1.0.4
Ultimo Aggiornamento 2018-10-09
Data di Pubblicazione 2018-10-09
Valutazione 4.50/5 Totale 4 Valutazioni
Sviluppatore http://riangraphics.com
Tipo di Pagamento free
Sito Web dell'Estensione https://riangraphics.com/highlithed-word-counter/
URL della Pagina di Aiuto https://riangraphics.com/highlithed-word-counter/#faq
Lingue Supportate 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"
    ]
}