Count selected characters and words

A simple tool to count selected characters and words.

Vad är Count selected characters and words?

Count selected characters and words är en Chrome-tillägg utvecklad av http://riangraphics.com, och dess huvudfunktion är "A simple tool to count selected characters and words.".

Tilläggsskärmbilder

screenshot

Ladda ner Count selected characters and words-förlängningens CRX-fil

Ladda ner Count selected characters and words-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Count selected characters and words Count selected characters and words
ID pdbaijkfobjcdkppnnmjddjgfhjdpoge
Officiell webbadress https://chrome.google.com/webstore/detail/count-selected-characters/pdbaijkfobjcdkppnnmjddjgfhjdpoge
Beskrivning A simple tool to count selected characters and words.
Filstorlek 7.42 KB
Antal Installationer 75
Aktuell Version 1.0.4
Senast Uppdaterad 2018-10-09
Publiceringsdatum 2018-10-09
Betyg 4.50/5 Totalt 4 Betyg
Utvecklare http://riangraphics.com
Betalningssätt free
Tilläggswebbplats https://riangraphics.com/highlithed-word-counter/
Hjälpsida URL https://riangraphics.com/highlithed-word-counter/#faq
Stödda Språk 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"
    ]
}