copyToRegex
This extension allows you to copy text directly to the clipboard with regex special characters escaped
copyToRegexとは何ですか?
copyToRegexはdjmartinsによって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to copy text directly to the clipboard with regex special characters escaped」です。
拡張機能のスクリーンショット
copyToRegex拡張機能のCRXファイルをダウンロード
copyToRegex拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A extensão permite copiar texto directamente para a área de transferência, com os caracteres especiais usados em expressões regulares escapados* automaticamente. Por defeito o atalho é "Alt+C", mas pode ser configurado na página de extensões do chrome (Atalhos de teclado no fim da página). Se o atalho já estiver atribuído a outra extensão é necessário alterar esta configuração manualmente. --- This extension allows you to copy text directly to the clipboard with regex special characters escaped. By default the shortcut to copy text is "Alt+C", but you can choose which one to use in your chrome extensions tab (Keyboard Shortcuts in the bottom of the page). If some other extension is already using the shortcut you must specify a new one.
拡張機能の基本情報
名前 | |
ID | cefalijlbgfcicklinejbakpmjdipjkh |
公式URL | https://chromewebstore.google.com/detail/copytoregex/cefalijlbgfcicklinejbakpmjdipjkh |
説明 | This extension allows you to copy text directly to the clipboard with regex special characters escaped |
ファイルサイズ | 3.85 KB |
インストール数 | 14 |
現在のバージョン | 0.1 |
最終更新日 | 2015-06-25 |
公開日 | 2015-06-25 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | djmartins |
支払い方法 | free |
対応言語 | pt-PT |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "copyToRegex", "description": "This extension allows you to copy text directly to the clipboard with regex special characters escaped", "version": "0.1", "permissions": [ "activeTab", "clipboardWrite" ], "commands": { "copyRegex": { "suggested_key": { "default": "Alt+C" }, "description": "Copy text to the clipboard as a regex with special characters escaped" } }, "background": { "scripts": [ "copyToRegex.js" ], "persistent": false } } |