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
官方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"
}