Tally Word Counter

Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.

Hvad er Tally Word Counter?

Tally Word Counter er en Chrome-udvidelse udviklet af https://tallywordcounter.online, og dens hovedfunktion er "Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Tally Word Counter-udvidelses-CRX-fil

Download Tally Word Counter-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

                        Your favorite character counter! Tally is a Chrome extension to easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count to see the number of characters, words, sentences, paragraphs, spaces, letters, digits, and special characters in your text.

Visit tallywordcounter.online for the full site.                    

Grundlæggende oplysninger om udvidelsen

Navn Tally Word Counter Tally Word Counter
ID eggkmbghbmjmbdjloifaklghfiecjbnk
Officiel URL https://chromewebstore.google.com/detail/tally-word-counter/eggkmbghbmjmbdjloifaklghfiecjbnk
Beskrivelse Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.
Filstørrelse 13.05 KB
Antal Installationer 331
Nuværende Version 1.1
Senest Opdateret 2019-06-06
Udgivelsesdato 2019-05-31
Bedømmelse 2.67/5 Samlet 6 Bedømmelser
Udvikler https://tallywordcounter.online
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tally Word Counter",
    "short_name": "Tally",
    "description": "Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.",
    "version": "1.1",
    "icons": {
        "128": "128.png",
        "48": "48.png",
        "32": "32.png",
        "16": "16.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "manifest_version": 2
}