Word Counter

Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.

什么是Word Counter?

Word Counter是由mileswiesenthal开发的Chrome扩展程序,该扩展的主要功能是“Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.”。

下载Word Counter扩展crx文件

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

扩展使用说明

                        Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.                    

扩展基本信息

名称 Word Counter Word Counter
ID genbfnkneekjmppgniacjffdphjgadpd
官方URL https://chrome.google.com/webstore/detail/word-counter/genbfnkneekjmppgniacjffdphjgadpd
简介 Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.
文件大小 359 KB
安装次数 19
当前版本 1.0
更新时间 2017-08-07
上架时间 2017-08-07
评分 1.00/5 共1次评分
开发者 mileswiesenthal
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Counter",
    "short_name": "PM",
    "description": "Select text and find how many words and letters are in it by clicking the icon! Also it displays the average letter count per word.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Word Counter"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "googleDocsUtil.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}