Word Counter
Counting the amount of a given word in the current page
Word Counter क्या है?
Word Counter chatjonsmedia द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Counting the amount of a given word in the current page"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Word Counter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Word Counter is a fun extension that will let the user count how many words appear in a page.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | ledamfbeelplcjfjclabbckmglgkmhdf |
आधिकारिक URL | https://chrome.google.com/webstore/detail/word-counter/ledamfbeelplcjfjclabbckmglgkmhdf |
विवरण | Counting the amount of a given word in the current page |
फ़ाइल का आकार | 14.55 KB |
स्थापना संख्या | 2,959 |
वर्तमान संस्करण | 1 |
अंतिम अपडेट | 2022-12-05 |
प्रकाशन तिथि | 2022-12-05 |
डेवलपर | chatjonsmedia |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://home.ujhimselvepost.info/ |
सहायता पृष्ठ URL | https://home.ujhimselvepost.info/contact.html |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Counting the amount of a given word in the current page", "icons": { "128": "logo.png" }, "action": { "default_icon": "logo.png", "default_title": "Word Counter", "default_popup": "popup.html" }, "manifest_version": 3, "name": "Word Counter", "version": "1", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ] } |