Word Counter
Estimates how many words you read in selected language
什麼是Word Counter?
Word Counter是由tobecomebig開發的Chrome擴展程式,該擴展的主要功能是“Estimates how many words you read in selected language”。
擴展截圖
下載Word Counter擴展crx文件
下載Word Counter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Aren't you interested in knowing how many words approximately you do read for the day? This extension counts the number of words. The best way to use this extension is when you are learning foreign languages!! The app counts up words in language you select. English (default), French, and Spanish are available. ****** Notice ****** ・The extension does not count how many words in some web pages. ・The number of words is estimate. That measures the total number of words in web pages and add half of it assuming you read.
擴展基本資訊
名稱 | |
ID | dkgjjjoaomepomilhkpoccnlcibihnac |
官方網址 | https://chrome.google.com/webstore/detail/word-counter/dkgjjjoaomepomilhkpoccnlcibihnac |
簡介 | Estimates how many words you read in selected language |
檔案大小 | 43.16 KB |
安裝次數 | 10 |
目前版本 | 0.2 |
更新時間 | 2014-03-10 |
上架時間 | 2014-03-10 |
開發者 | tobecomebig |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Word Counter", "version": "0.2", "manifest_version": 2, "description": "Estimates how many words you read in selected language", "permissions": [ "activeTab", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery.js", "countUp.min.copy.js", "content_script.js" ] } ], "browser_action": { "default_icon": "icon.png", "default_title": "Word Counter", "default_popup": "popup.html" } } |