Word Counter
Estimates how many words you read in selected language
Vad är Word Counter?
Word Counter är en Chrome-tillägg utvecklad av tobecomebig, och dess huvudfunktion är "Estimates how many words you read in selected language".
Tilläggsskärmbilder
Ladda ner Word Counter-förlängningens CRX-fil
Ladda ner Word Counter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | dkgjjjoaomepomilhkpoccnlcibihnac |
Officiell webbadress | https://chrome.google.com/webstore/detail/word-counter/dkgjjjoaomepomilhkpoccnlcibihnac |
Beskrivning | Estimates how many words you read in selected language |
Filstorlek | 43.16 KB |
Antal Installationer | 10 |
Aktuell Version | 0.2 |
Senast Uppdaterad | 2014-03-10 |
Publiceringsdatum | 2014-03-10 |
Utvecklare | tobecomebig |
Betalningssätt | free |
Stödda Språk | 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" } } |