Wordcounter
Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.
Wordcounter क्या है?
Wordcounter Sahil Lavingia द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Wordcounter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Wordcounter shows a real-time word count as you type in any Google Docs document. You can toggle it off and on by clicking on the icon in the top right corner of your browser. It also adds milestone markers every 500 words. Motivating!
एक्सटेंशन की मूल जानकारी
नाम | Wordcounter |
ID | lhggjeapfnagbjlklclkmlihhoandlib |
आधिकारिक URL | https://chromewebstore.google.com/detail/wordcounter/lhggjeapfnagbjlklclkmlihhoandlib |
विवरण | Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words. |
फ़ाइल का आकार | 45.97 KB |
स्थापना संख्या | 3,718 |
वर्तमान संस्करण | 1.3 |
अंतिम अपडेट | 2018-08-02 |
प्रकाशन तिथि | 2018-08-01 |
रेटिंग | 2.62/5 कुल 37 रेटिंग्स |
डेवलपर | Sahil Lavingia |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Wordcounter", "version": "1.3", "description": "Displays a real-time word count while writing in Google Docs, as well as milestone markers every 500 words.", "permissions": [ "activeTab", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/*" ], "css": [ "style.css" ], "js": [ "jquery-3.3.1.min.js", "content.js" ] } ], "browser_action": { "name": "Click to toggle Wordcounter on or off" }, "icons": { "128": "icon.png" }, "manifest_version": 2 } |