Word Count

Counts the words in the document selection and text entry.

什么是Word Count?

Word Count是由shawn.hoover开发的Chrome扩展程序,该扩展的主要功能是“Counts the words in the document selection and text entry.”。

扩展截图

screenshot
screenshot

下载Word Count扩展crx文件

下载Word Count扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Counts the words in the document selection and text entry. The count is displayed in an icon in the location bar. Use this to track word counts as you type or if you're curious how many words are in part of a web page.                    

扩展基本信息

名称 Word Count Word Count
ID cipmjkgfjmkcmjfoidhpjfoihkgggmfk
官方URL https://chrome.google.com/webstore/detail/word-count/cipmjkgfjmkcmjfoidhpjfoihkgggmfk
简介 Counts the words in the document selection and text entry.
文件大小 9.76 KB
安装次数 195
当前版本 0.4
更新时间 2015-07-30
上架时间 2015-07-30
评分 3.14/5 共7次评分
开发者 shawn.hoover
付费类型 free
扩展官网 https://bitbucket.org/shoover/word-count-ext
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Count",
    "version": "0.4",
    "author": "Shawn Hoover",
    "manifest_version": 2,
    "description": "Counts the words in the document selection and text entry.",
    "icons": {
        "64": "logo64.png",
        "128": "logo128.png"
    },
    "permissions": [
        "tabs"
    ],
    "page_action": {
        "default_title": "Word Count"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}