Word Counter
Estimates how many words you read in selected language
Word Counterคืออะไร?
Word Counter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tobecomebig และคุณลักษณะหลักของมันคือ "Estimates how many words you read in selected language"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Word Counter
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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" } } |