Easy Character Counter
count string
Easy Character Counter क्या है?
Easy Character Counter https://macha795.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "count string"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Easy Character Counter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Count the number of characters in the selected text. This is a Chrome Extension that allows you to count the number of characters in the selected text. The number of characters is displayed in the upper right corner of the screen. Please use it to check the number of characters in an article or for proofreading.
एक्सटेंशन की मूल जानकारी
नाम | Easy Character Counter |
ID | copafpdgkjbaoenpeogidcemgmgfflgb |
आधिकारिक URL | https://chromewebstore.google.com/detail/easy-character-counter/copafpdgkjbaoenpeogidcemgmgfflgb |
विवरण | count string |
फ़ाइल का आकार | 46.36 KB |
स्थापना संख्या | 25 |
वर्तमान संस्करण | 0.0.3 |
अंतिम अपडेट | 2022-06-28 |
प्रकाशन तिथि | 2022-06-11 |
डेवलपर | https://macha795.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.0.3", "manifest_version": 3, "default_locale": "en", "background": { "service_worker": "js\/background.js" }, "permissions": [ "contextMenus" ], "icons": { "64": "img\/icon_64.png", "128": "img\/icon_128.png", "512": "img\/icon_512.png" }, "content_scripts": [ { "all_frames": false, "css": [ "css\/contents.css" ], "js": [ "plugin\/jquery.min.js", "js\/contents.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_idle" } ], "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "web_accessible_resources": [ { "resources": [ "img\/close_w.svg" ], "matches": [ "https:\/\/*\/*" ] } ] } |