Word and Page Count for Google Docs

Status bar display of word and page count in Google Docs.

Cos'è Word and Page Count for Google Docs?

Word and Page Count for Google Docs è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Status bar display of word and page count in Google Docs.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Word and Page Count for Google Docs

Scarica i file di estensione Word and Page Count for Google Docs 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

                                            

Informazioni di Base sull'Estensione

Nome Word and Page Count for Google Docs Word and Page Count for Google Docs
ID lplekocfhhdadellpmilcaobpmlkgdde
URL Ufficiale https://chromewebstore.google.com/detail/word-and-page-count-for-g/lplekocfhhdadellpmilcaobpmlkgdde
Descrizione Status bar display of word and page count in Google Docs.
Dimensione del File 373 KB
Conteggio Installazioni 605
Versione Corrente 1.3
Ultimo Aggiornamento 2017-01-17
Data di Pubblicazione 2017-01-16
Valutazione 3.83/5 Totale 12 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word and Page Count for Google Docs",
    "version": "1.3",
    "manifest_version": 2,
    "web_accessible_resources": [
        "statusbar.html"
    ],
    "description": "Status bar display of word and page count in Google Docs.",
    "background": {
        "page": "background.html"
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Ready to count words and pages in Google doc"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/document\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "48": "48.png",
        "128": "128.png"
    },
    "options_page": "fancy-settings\/source\/index.html"
}