SmartCopy
Smart copying Text
SmartCopyとは何ですか?
SmartCopyはferunelli222によって開発されたChromeの拡張機能で、その主な機能は「Smart copying Text」です。
拡張機能のスクリーンショット
SmartCopy拡張機能のCRXファイルをダウンロード
SmartCopy拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Умное копирование текста. 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" } } } |