Word Counter
Estimates how many words you read in selected language
Cos'è Word Counter?
Word Counter è un'estensione di Chrome sviluppata da tobecomebig, e la sua funzione principale è "Estimates how many words you read in selected language".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Word Counter
Scarica i file di estensione Word Counter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | dkgjjjoaomepomilhkpoccnlcibihnac |
URL Ufficiale | https://chrome.google.com/webstore/detail/word-counter/dkgjjjoaomepomilhkpoccnlcibihnac |
Descrizione | Estimates how many words you read in selected language |
Dimensione del File | 43.16 KB |
Conteggio Installazioni | 10 |
Versione Corrente | 0.2 |
Ultimo Aggiornamento | 2014-03-10 |
Data di Pubblicazione | 2014-03-10 |
Sviluppatore | tobecomebig |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |