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