Auto Uppercase for Whatsapp Web
Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically.
Auto Uppercase for Whatsapp Web क्या है?
Auto Uppercase for Whatsapp Web opsJson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Auto Uppercase for Whatsapp Web एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Eliminate pinky finger pain by automating the process of pressing shift to type capital letters at the beginning of sentences and after punctuation marks.
एक्सटेंशन की मूल जानकारी
नाम | Auto Uppercase for Whatsapp Web |
ID | lnhongehbnheecmglhgilembngeejbnb |
आधिकारिक URL | https://chromewebstore.google.com/detail/auto-uppercase-for-whatsa/lnhongehbnheecmglhgilembngeejbnb |
विवरण | Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically. |
फ़ाइल का आकार | 24.66 KB |
स्थापना संख्या | 271 |
वर्तमान संस्करण | 3.1 |
अंतिम अपडेट | 2023-05-29 |
प्रकाशन तिथि | 2022-12-31 |
रेटिंग | 3.00/5 कुल 4 रेटिंग्स |
डेवलपर | opsJson |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en,pt-BR |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "3.1", "name": "Auto Uppercase for Whatsapp Web", "description": "__MSG_appDesc__", "default_locale": "en", "content_scripts": [ { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "js": [ "injector.js" ] } ], "web_accessible_resources": [ { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "resources": [ "script.js" ] } ], "background": { "service_worker": "background.js" }, "icons": { "128": ".\/icons\/128.png", "64": ".\/icons\/64.png", "38": ".\/icons\/38.png", "16": ".\/icons\/16.png" }, "permissions": [ "storage" ] } |