Surround it!
Simply wrap text in any brackets or parentheses.
Wat is Surround it!?
Surround it! is een Chrome-extensie ontwikkeld door https://andret.eu, en de belangrijkste functie is "Simply wrap text in any brackets or parentheses.".
Extensie Screenshots
Download het CRX-bestand van de extensie Surround it!
Download Surround it!-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Surround it! |
ID | cjelblbjilfobifendknkljagdndaipd |
Officiële URL | https://chromewebstore.google.com/detail/surround-it/cjelblbjilfobifendknkljagdndaipd |
Beschrijving | Simply wrap text in any brackets or parentheses. |
Bestandsgrootte | 44.33 KB |
Aantal Installaties | 25 |
Huidige Versie | 0.2.0 |
Laatst Bijgewerkt | 2023-06-23 |
Publicatiedatum | 2021-11-08 |
Beoordeling | 4.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | https://andret.eu |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |