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開發的Chrome擴展程式,該擴展的主要功能是“Status bar display of word and page count in Google Docs.”。

擴展截圖

screenshot

下載Word and Page Count for Google Docs擴展crx文件

下載Word and Page Count for Google Docs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                                            

擴展基本資訊

名稱 Word and Page Count for Google Docs Word and Page Count for Google Docs
ID lplekocfhhdadellpmilcaobpmlkgdde
官方網址 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"
}