Surround it!

Simply wrap text in any brackets or parentheses.

Qu'est-ce que Surround it! ?

Surround it! est une extension Chrome développée par https://andret.eu, et sa fonction principale est "Simply wrap text in any brackets or parentheses.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Surround it!

Téléchargez les fichiers d'extension Surround it! au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Surround it! Surround it!
ID cjelblbjilfobifendknkljagdndaipd
URL Officiel https://chromewebstore.google.com/detail/surround-it/cjelblbjilfobifendknkljagdndaipd
Description Simply wrap text in any brackets or parentheses.
Taille du Fichier 44.33 KB
Nombre d'Installations 25
Version Actuelle 0.2.0
Dernière Mise à Jour 2023-06-23
Date de Publication 2021-11-08
Évaluation 4.00/5 Total 4 Évaluations
Développeur https://andret.eu
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}