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