Word Counter
Estimates how many words you read in selected language
Apa itu Word Counter?
Word Counter adalah ekstensi Chrome yang dikembangkan oleh tobecomebig, dan fitur utamanya adalah "Estimates how many words you read in selected language".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Word Counter
Unduh file ekstensi Word Counter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | dkgjjjoaomepomilhkpoccnlcibihnac |
URL Resmi | https://chrome.google.com/webstore/detail/word-counter/dkgjjjoaomepomilhkpoccnlcibihnac |
Deskripsi | Estimates how many words you read in selected language |
Ukuran File | 43.16 KB |
Jumlah Instalasi | 10 |
Versi Saat Ini | 0.2 |
Terakhir Diperbarui | 2014-03-10 |
Tanggal Publikasi | 2014-03-10 |
Pengembang | tobecomebig |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } } |