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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" } } |