Wordcounter
Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.
什么是Wordcounter?
Wordcounter是由Sahil Lavingia开发的Chrome扩展程序,该扩展的主要功能是“Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.”。
扩展截图
下载Wordcounter扩展crx文件
下载Wordcounter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Wordcounter shows a real-time word count as you type in any Google Docs document. You can toggle it off and on by clicking on the icon in the top right corner of your browser. It also adds milestone markers every 500 words. Motivating!
扩展基本信息
名称 | Wordcounter |
ID | lhggjeapfnagbjlklclkmlihhoandlib |
官方URL | https://chromewebstore.google.com/detail/wordcounter/lhggjeapfnagbjlklclkmlihhoandlib |
简介 | Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words. |
文件大小 | 45.97 KB |
安装次数 | 3,718 |
当前版本 | 1.3 |
更新时间 | 2018-08-02 |
上架时间 | 2018-08-01 |
评分 | 2.62/5 共37次评分 |
开发者 | Sahil Lavingia |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Wordcounter", "version": "1.3", "description": "Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.", "permissions": [ "activeTab", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/*" ], "css": [ "style.css" ], "js": [ "jquery-3.3.1.min.js", "content.js" ] } ], "browser_action": { "name": "Click to toggle Wordcounter on or off" }, "icons": { "128": "icon.png" }, "manifest_version": 2 } |