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