Word Count Toolbar
Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords
Word Count Toolbarとは何ですか?
Word Count ToolbarはJohannesによって開発されたChromeの拡張機能で、その主な機能は「Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords」です。
拡張機能のスクリーンショット
Word Count Toolbar拡張機能のCRXファイルをダウンロード
Word Count Toolbar拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Word Count Toolbar Get text stats from any website everywhere! Word Count Toolbar is an extension for displaying text analytics on google searches and on any website you want. Simply type in your google query and the extension will inject display the text stats for every page. Use the right-click menu for displaying stats, on your current selected text, on any page. - Word count - Character count with/without spaces - Sentence count - Average Sentence length - Paragraphs - Headers - Images - Keywords
拡張機能の基本情報
名前 | Word Count Toolbar |
ID | mbmhadmadlioegaemcblhbloheompkeb |
公式URL | https://chromewebstore.google.com/detail/word-count-toolbar/mbmhadmadlioegaemcblhbloheompkeb |
説明 | Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords |
ファイルサイズ | 18.59 KB |
インストール数 | 202 |
現在のバージョン | 0.1 |
最終更新日 | 2021-09-14 |
公開日 | 2021-09-13 |
評価 | 5.00/5 合計 4 レビュー |
開発者 | Johannes |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Word Count Toolbar", "description": "Get text stats from any website everywhere! Count words, sentences, characters, paragraphs, headers, images and keywords", "version": "0.1", "author": "Johannes", "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "css": [ "styles.css" ], "js": [ "content.js" ] } ], "browser_action": { "default_title": "Word Count Toolbar" }, "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "https:\/\/www.google.com\/*", "contextMenus" ] } |