Wordcounter

Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.

Cos'è Wordcounter?

Wordcounter è un'estensione di Chrome sviluppata da Sahil Lavingia, e la sua funzione principale è "Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Wordcounter

Scarica i file di estensione Wordcounter 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

                        Wordcounter shows a real-time word count as you type in any Google Docs document. You can toggle it off and on by clicking on the icon in the top right corner of your browser.

It also adds milestone markers every 500 words. Motivating!                    

Informazioni di Base sull'Estensione

Nome Wordcounter Wordcounter
ID lhggjeapfnagbjlklclkmlihhoandlib
URL Ufficiale https://chromewebstore.google.com/detail/wordcounter/lhggjeapfnagbjlklclkmlihhoandlib
Descrizione Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.
Dimensione del File 45.97 KB
Conteggio Installazioni 3,718
Versione Corrente 1.3
Ultimo Aggiornamento 2018-08-02
Data di Pubblicazione 2018-08-01
Valutazione 2.62/5 Totale 37 Valutazioni
Sviluppatore Sahil Lavingia
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wordcounter",
    "version": "1.3",
    "description": "Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "name": "Click to toggle Wordcounter on or off"
    },
    "icons": {
        "128": "icon.png"
    },
    "manifest_version": 2
}