Word Counter

Displays word count in the extensions toolbar.

什么是Word Counter?

Word Counter是由chriham3开发的Chrome扩展程序,该扩展的主要功能是“Displays word count in the extensions toolbar.”。

扩展截图

screenshot

下载Word Counter扩展crx文件

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

扩展使用说明

                        Simple word counting extension. Simply select the text you wish to count, and the word count will appear on the icon at the extensions bar in the top right corner.                    

扩展基本信息

名称 Word Counter Word Counter
ID ipmlaaleafabnehpmokomegjjodbmoik
官方URL https://chromewebstore.google.com/detail/word-counter/ipmlaaleafabnehpmokomegjjodbmoik
简介 Displays word count in the extensions toolbar.
文件大小 9.84 KB
安装次数 411
当前版本 0.2
更新时间 2017-12-05
上架时间 2017-12-04
评分 4.00/5 共7次评分
开发者 chriham3
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Counter",
    "description": "Displays word count in the extensions toolbar.",
    "version": "0.2",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "32": "icon32.png",
        "48": "icon32.png",
        "128": "icon32.png"
    },
    "browser_action": {
        "default_icon": "icon32.png",
        "default_title": "Word Counter",
        "default_popup": "instructions.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "checker.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "wordcounter.js"
        ]
    }
}