Word Counter

Estimates how many words you read in selected language

什么是Word Counter?

Word Counter是由tobecomebig开发的Chrome扩展程序,该扩展的主要功能是“Estimates how many words you read in selected language”。

扩展截图

screenshot

下载Word Counter扩展crx文件

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

扩展使用说明

                        Aren't you interested in knowing how many words approximately you do read for the day?
This extension counts the number of words. The best way to use this extension is when you are learning foreign languages!!

The app counts up words in language you select. English (default), French, and Spanish are available.

****** Notice ******
・The extension does not count how many words in some web pages.
・The number of words is estimate. That measures the total number of words in web pages and add half of it assuming you read.                    

扩展基本信息

名称 Word Counter Word Counter
ID dkgjjjoaomepomilhkpoccnlcibihnac
官方URL https://chrome.google.com/webstore/detail/word-counter/dkgjjjoaomepomilhkpoccnlcibihnac
简介 Estimates how many words you read in selected language
文件大小 43.16 KB
安装次数 10
当前版本 0.2
更新时间 2014-03-10
上架时间 2014-03-10
开发者 tobecomebig
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Word Counter",
    "version": "0.2",
    "manifest_version": 2,
    "description": "Estimates how many words you read in selected language",
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "countUp.min.copy.js",
                "content_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Word Counter",
        "default_popup": "popup.html"
    }
}