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.」です。
拡張機能のスクリーンショット
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! |
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 |
Eメール | [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" } } |