Word Counter
Estimates how many words you read in selected language
Word Counter क्या है?
Word Counter tobecomebig द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Estimates how many words you read in selected language"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Word Counter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |