Word Count
Display the number of words and characters within highlight in contextMenu and bottom right
Word Count क्या है?
Word Count Zeno द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display the number of words and characters within highlight in contextMenu and bottom right"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Word Count एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Display the number of words and characters within highlight in context menu and bottom right
On highlight, show the word count and the number of characters immediately.
Settings to change to
- dark count box
- hide count box
Chrome extension word counter to easily count words & characters एक्सटेंशन की मूल जानकारी
| नाम | |
| ID | inaklojbeljbfmkkpjfmjjgehckpeohf |
| आधिकारिक URL | https://chromewebstore.google.com/detail/word-count/inaklojbeljbfmkkpjfmjjgehckpeohf |
| विवरण | Display the number of words and characters within highlight in contextMenu and bottom right |
| फ़ाइल का आकार | 15.59 KB |
| स्थापना संख्या | 53 |
| वर्तमान संस्करण | 0.2 |
| अंतिम अपडेट | 2022-06-09 |
| प्रकाशन तिथि | 2022-06-09 |
| डेवलपर | Zeno |
| ईमेल | [email protected] |
| भुगतान के प्रकार | free |
| एक्सटेंशन वेबसाइट | https://www.buymeacoffee.com/WhyNotBeFrg |
| समर्थित भाषाएँ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Word Count",
"version": "0.2",
"description": "Display the number of words and characters within highlight in contextMenu and bottom right",
"icons": {
"16": "icons\/logo.png",
"48": "icons\/logo.png",
"128": "icons\/logo.png"
},
"permissions": [
"tabs",
"contextMenus",
"scripting",
"storage"
],
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"action": {
"default_title": "test",
"default_popup": "key.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*"
],
"js": [
"test.js"
]
}
]
} | |