Surround it!
Simply wrap text in any brackets or parentheses.
Surround it! क्या है?
Surround it! https://andret.eu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simply wrap text in any brackets or parentheses."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Surround it! एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension in based on the behavior of programming IDEs that speed up writing texts. Select the text and press the opening bracket or quotation mark, instead of replacing the text (default behavior), the text will be wrapped correctly with the selected bracket or character and the selection will persist. With this extension you can wrap the text with one of the possible character pair. Choose from: - (...) - [...] - {...} - <...> - '...' - "..." - `...` After pressing the first of the characters, the selected text appears in the matching brackets or string literal characters and selection remains the same. The extension does not store or send the selected texts.
एक्सटेंशन की मूल जानकारी
नाम | Surround it! |
ID | cjelblbjilfobifendknkljagdndaipd |
आधिकारिक URL | https://chromewebstore.google.com/detail/surround-it/cjelblbjilfobifendknkljagdndaipd |
विवरण | Simply wrap text in any brackets or parentheses. |
फ़ाइल का आकार | 44.33 KB |
स्थापना संख्या | 25 |
वर्तमान संस्करण | 0.2.0 |
अंतिम अपडेट | 2023-06-23 |
प्रकाशन तिथि | 2021-11-08 |
रेटिंग | 4.00/5 कुल 4 रेटिंग्स |
डेवलपर | https://andret.eu |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Surround it!", "short_name": "Surround it", "version": "0.2.0", "description": "Simply wrap text in any brackets or parentheses.", "author": "[email protected]", "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/", "http:\/\/*\/" ], "js": [ "libs\/jquery.min.js", "background.js" ] } ], "icons": { "16": "assets\/icons\/img16.png", "32": "assets\/icons\/img32.png", "48": "assets\/icons\/img48.png", "128": "assets\/icons\/img128.png" } } |