Wordcounter

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

Wat is Wordcounter?

Wordcounter is een Chrome-extensie ontwikkeld door Sahil Lavingia, en de belangrijkste functie is "Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Wordcounter

Download Wordcounter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Wordcounter Wordcounter
ID lhggjeapfnagbjlklclkmlihhoandlib
Officiële URL https://chromewebstore.google.com/detail/wordcounter/lhggjeapfnagbjlklclkmlihhoandlib
Beschrijving Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.
Bestandsgrootte 45.97 KB
Aantal Installaties 3,718
Huidige Versie 1.3
Laatst Bijgewerkt 2018-08-02
Publicatiedatum 2018-08-01
Beoordeling 2.62/5 Totaal 37 Beoordelingen
Ontwikkelaar Sahil Lavingia
Betalingswijze free
Ondersteunde Talen 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
}