IntelliJ Surround My Text!

Wrap/surround selected text in forms with double quote (and whatever you want: single quote, comma, brace, curly, parenthesis, ...).

IntelliJ Surround My Text!とは何ですか?

IntelliJ Surround My Text!はhttps://comexpertise.comによって開発されたChromeの拡張機能で、その主な機能は「Wrap/surround selected text in forms with double quote (and whatever you want: single quote, comma, brace, curly, parenthesis, ...).」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

IntelliJ Surround My Text!拡張機能のCRXファイルをダウンロード

IntelliJ Surround My Text!拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        ## How it work?

This extension allows you to wrap/surround a selected text in a editable content (like form fields) with a character of your choice. This is particularly useful when needing to quote a word with the "quotation marks" key of your keyboard, but also surrounded with parenthesis.

ℹ️ Example, I have made a text selection for the word "dolor", next I push the left parenthesis key:
BEFORE: Lorem ipsum dolor sit amet.
AFTER: Lorem ipsum (dolor) sit amet.

This extension allow more than the simple & double quotes, below the default configuration:

### Simple wrap (left character is the same of right):
" (double quotation mark) "
¨ (diaeresis (umlaut)) ¨
' (apostrophe) '
¸ (cedilla) ¸
` (back-tick or grave accent) `
´ (acute accent) ´
· (middle dot) ·
. (dot or full stop) .
* (asterisk) *
º (masculine ordinal indicator) º
ª (feminine ordinal Indicator) ª
° (degree symbol) °
% (percent sign) %
= (equal sign) =
+ (plus sign) +
! (exclamation mark) !
| (vertical bar) |
¦ (broken bar) ¦
~ (tilde) ~
¯ (macron) ¯
_ (low line) _
- (hyphen-minus) -
: (colon) :
¤ (currency sign) ¤
§ (section sign) §

### Simple wrap (left character is different of right):
< (less-than sign, greater-than sign) >
˂ (modifier letter left arrowhead, modifier letter right arrowhead) ˃
« (left-pointing double angle quotation mark, right-pointing double angle quotation mark) »
“ (left double quotation mark, right double quotation mark) ”
ʿ (modifier letter left half ring, modifier letter right half ring) ʾ
( (left parenthesis, right parenthesis) )
[ (left square bracket, right square bracket) ]
{ (left curly bracket, right curly bracket) }

... and more! Customize it, and add lot of more characters as you want. All unicode + emoji are fully compatible.


✓ Light & fast
✓ No ads!
✓ Minimal extension permissions required
✓ Fully customizable

Works well:
    ✓ Leave selection intact after character wrapping (selection include all the the wrapped text + left/right chars.)
    ✓ Editor history preserved (undo/redo inside a form field)

100% compatible with:
    ✓ All unicode chars
    ✓ All emoji
    ✓ Gmail & other "fake" input fields



## How to use this extension:

1. In an editable form field, make a text selection; select a word, part of a word or all the text for example ...
2. Press the double quotation mark key: ", the selected text will be" surrounded by quotation marks).



### Create a new character configuration:

1. Indicate the character (the key on your keyboard) that will trigger the action when a text is selected
2. (optional) You can choose to "surround" the selected text with a character on the right different from that on the left



### Deactivate a character configuration:

You can, in order to keep your settings for a character, choose to temporarily deactivate a character. To do this, click on the check box on the right entitled "Activated?".



### Remove a character configuration:

You can permanently delete a character its parameters. To do this, click on the button on the right entitled "Delete".                    

拡張機能の基本情報

名前 IntelliJ Surround My Text! IntelliJ Surround My Text!
ID oeanaeldbmojllkcjmmfolgojajlljeh
公式URL https://chromewebstore.google.com/detail/intellij-surround-my-text/oeanaeldbmojllkcjmmfolgojajlljeh
説明 Wrap/surround selected text in forms with double quote (and whatever you want: single quote, comma, brace, curly, parenthesis, ...).
ファイルサイズ 142 KB
インストール数 148
現在のバージョン 1.0.0
最終更新日 2020-02-24
公開日 2020-02-23
評価 4.17/5 合計 6 レビュー
開発者 https://comexpertise.com
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "IntelliJ Surround My Text!",
    "short_name": "SmT",
    "description": "Wrap\/surround selected text in forms with double quote (and whatever you want: single quote, comma, brace, curly, parenthesis, ...).",
    "version": "1.0.0",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": true
    },
    "browser_action": {
        "default_icon": "browser-icon128.png",
        "default_title": "IntelliJ Surround My Text!",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png",
        "256": "icon256.png",
        "512": "icon512.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "js\/vendor.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "",
        "storage"
    ],
    "web_accessible_resources": []
}