Surround it!
Simply wrap text in any brackets or parentheses.
Was ist Surround it!?
Surround it! ist eine Chrome-Erweiterung, die von https://andret.eu entwickelt wurde, und ihr Hauptmerkmal ist "Simply wrap text in any brackets or parentheses.".
Erweiterungsscreenshots
Surround it!-Erweiterungs-CRX-Datei herunterladen
Laden Sie Surround it!-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Surround it! |
ID | cjelblbjilfobifendknkljagdndaipd |
Offizielle URL | https://chromewebstore.google.com/detail/surround-it/cjelblbjilfobifendknkljagdndaipd |
Beschreibung | Simply wrap text in any brackets or parentheses. |
Dateigröße | 44.33 KB |
Installationsanzahl | 25 |
Aktuelle Version | 0.2.0 |
Letztes Update | 2023-06-23 |
Veröffentlichungsdatum | 2021-11-08 |
Bewertung | 4.00/5 Insgesamt 4 Bewertungen |
Entwickler | https://andret.eu |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |