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.
拡張機能の基本情報
名前 | |
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:\/\/*\/*" ] } |