Word and Page Count for Google Docs

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

Word and Page Count for Google Docs क्या है?

Word and Page Count for Google Docs Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Status bar display of word and page count in Google Docs."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Word and Page Count for Google Docs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                                            

एक्सटेंशन की मूल जानकारी

नाम Word and Page Count for Google Docs Word and Page Count for Google Docs
ID lplekocfhhdadellpmilcaobpmlkgdde
आधिकारिक URL https://chromewebstore.google.com/detail/word-and-page-count-for-g/lplekocfhhdadellpmilcaobpmlkgdde
विवरण Status bar display of word and page count in Google Docs.
फ़ाइल का आकार 373 KB
स्थापना संख्या 605
वर्तमान संस्करण 1.3
अंतिम अपडेट 2017-01-17
प्रकाशन तिथि 2017-01-16
रेटिंग 3.83/5 कुल 12 रेटिंग्स
डेवलपर Unknown
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
}