Surround it!

Simply wrap text in any brackets or parentheses.

Τι είναι το Surround it!;

Το Surround it! είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://andret.eu, και η κύρια λειτουργία του είναι "Simply wrap text in any brackets or parentheses.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Surround it!

Λήψη αρχείων επέκτασης Surround it! σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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! 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"
    }
}