Tally Word Counter

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

Cos'è Tally Word Counter?

Tally Word Counter è un'estensione di Chrome sviluppata da https://tallywordcounter.online, e la sua funzione principale è "Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Tally Word Counter

Scarica i file di estensione Tally Word Counter 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Tally Word Counter Tally Word Counter
ID eggkmbghbmjmbdjloifaklghfiecjbnk
URL Ufficiale https://chromewebstore.google.com/detail/tally-word-counter/eggkmbghbmjmbdjloifaklghfiecjbnk
Descrizione Easily count the number of words, characters, and paragraphs on any site. Right click on any selected text and click Count.
Dimensione del File 13.05 KB
Conteggio Installazioni 331
Versione Corrente 1.1
Ultimo Aggiornamento 2019-06-06
Data di Pubblicazione 2019-05-31
Valutazione 2.67/5 Totale 6 Valutazioni
Sviluppatore https://tallywordcounter.online
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
}