SmartCopy
Smart copying Text
SmartCopy란 무엇입니까?
SmartCopy은(는) ferunelli222에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Smart copying Text"입니다.
확장 프로그램 스크린샷
SmartCopy 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Умное копирование текста. 1. Выделите текст, который хотите скопировать. 2. Нажмите сочетание клавиш. 3. Вставьте полученную строчку из буфера обмена Сочетания клавиш: 1. Ctrl + shift + 1 - Копирование текста без изменений 2. Ctrl + shift + 2 - Копирование текст в нижнем регистре 3. Ctrl + shift + 3 - Копирование текста в верхнем регистре 4. Ctrl + shift + q - Копирование текста с чередованием регистров
확장 프로그램 기본 정보
이름 | SmartCopy |
ID | eobahfogffmfkcfhcnoakfmmpldoechf |
공식 URL | https://chromewebstore.google.com/detail/smartcopy/eobahfogffmfkcfhcnoakfmmpldoechf |
설명 | Smart copying Text |
파일 크기 | 146 KB |
설치 횟수 | 53 |
현재 버전 | 1.2.2 |
최근 업데이트 | 2019-04-15 |
출시 날짜 | 2019-04-15 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | ferunelli222 |
결제 유형 | free |
지원되는 언어 | ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SmartCopy", "short_name": "SCopy", "version": "1.2.2", "description": "Smart copying Text", "manifest_version": 2, "browser_action": { "default_icon": "SmartCopy.png" }, "background": { "scripts": [ "act.js" ], "persistent": false }, "permissions": [ "activeTab", "clipboardWrite" ], "commands": { "doAnAction": { "suggested_key": { "default": "Ctrl+Shift+Q", "mac": "Command+Shift+Q", "linux": "Ctrl+Shift+Q" }, "description": "Making your letters Upper case through 1 letter" }, "JustCopy": { "suggested_key": { "default": "Ctrl+Shift+1", "mac": "Command+Shift+1", "linux": "Ctrl+Shift+1" }, "description": "Copy text from forbidden area" }, "allLower": { "suggested_key": { "default": "Ctrl+Shift+2", "mac": "Command+Shift+2", "linux": "Ctrl+Shift+2" }, "description": "Making your letters Lower case" }, "allUpper": { "suggested_key": { "default": "Ctrl+Shift+3", "mac": "Command+Shift+3", "linux": "Ctrl+Shift+3" }, "description": "Making your letters Upper case" } } } |