SwitchCase
Switch selected text to all uppercase or all lowercase.
SwitchCase क्या है?
SwitchCase Ash A. द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Switch selected text to all uppercase or all lowercase."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में SwitchCase एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Ever realize there's no simple way to capitalize and uncapitalize a selected block of text in the browser? Or did you leave caps-lock on and want to reverse your all caps text? Now you can just select your text input, right-click, and choose whether to make text all uppercase or all lowercase. And best of all, it doesn't open a popup or another tab with your text, it replaces it RIGHT THERE! Note: Currently does not work on dynamically-loaded text or protected inputs, like Google search and Facebook.
एक्सटेंशन की मूल जानकारी
नाम | SwitchCase |
ID | cilpijegbpjdefcbhgjiobbegencnncb |
आधिकारिक URL | https://chromewebstore.google.com/detail/switchcase/cilpijegbpjdefcbhgjiobbegencnncb |
विवरण | Switch selected text to all uppercase or all lowercase. |
फ़ाइल का आकार | 10.23 KB |
स्थापना संख्या | 109 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2015-02-01 |
प्रकाशन तिथि | 2015-02-01 |
रेटिंग | 1.55/5 कुल 11 रेटिंग्स |
डेवलपर | Ash A. |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SwitchCase", "version": "1.1", "manifest_version": 2, "description": "Switch selected text to all uppercase or all lowercase.", "icons": { "16": "src\/img\/16.png", "48": "src\/img\/48.png" }, "permissions": [ "contextMenus" ], "offline_enabled": true, "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "src\/js\/content.js" ] } ], "background": { "scripts": [ "src\/js\/background.js" ] } } |