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