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 |
电子邮箱 | [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" ] } |