Surround it!

Simply wrap text in any brackets or parentheses.

什麼是Surround it!?

Surround it!是由https://andret.eu開發的Chrome擴展程式,該擴展的主要功能是“Simply wrap text in any brackets or parentheses.”。

擴展截圖

screenshot

下載Surround it!擴展crx文件

下載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
官方網址 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"
    }
}