Word and Page Count for Google Docs

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

Qu'est-ce que Word and Page Count for Google Docs ?

Word and Page Count for Google Docs est une extension Chrome développée par Unknown, et sa fonction principale est "Status bar display of word and page count in Google Docs.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Word and Page Count for Google Docs

Téléchargez les fichiers d'extension Word and Page Count for Google Docs au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                                            

Informations de Base sur l'Extension

Nom Word and Page Count for Google Docs Word and Page Count for Google Docs
ID lplekocfhhdadellpmilcaobpmlkgdde
URL Officiel https://chromewebstore.google.com/detail/word-and-page-count-for-g/lplekocfhhdadellpmilcaobpmlkgdde
Description Status bar display of word and page count in Google Docs.
Taille du Fichier 373 KB
Nombre d'Installations 605
Version Actuelle 1.3
Dernière Mise à Jour 2017-01-17
Date de Publication 2017-01-16
Évaluation 3.83/5 Total 12 Évaluations
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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"
}