copyToRegex
This extension allows you to copy text directly to the clipboard with regex special characters escaped
What is copyToRegex?
copyToRegex is a Chrome extension developed by djmartins, and its main feature is "This extension allows you to copy text directly to the clipboard with regex special characters escaped".
Extension Screenshots
Download copyToRegex Extension CRX File
Download copyToRegex extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | cefalijlbgfcicklinejbakpmjdipjkh |
Official URL | https://chromewebstore.google.com/detail/copytoregex/cefalijlbgfcicklinejbakpmjdipjkh |
Description | This extension allows you to copy text directly to the clipboard with regex special characters escaped |
File Size | 3.85 KB |
Installation Count | 14 |
Current Version | 0.1 |
Last Updated | 2015-06-25 |
Publish Date | 2015-06-25 |
Rating | 5.00/5 Total 2 Ratings |
Developer | djmartins |
Payment Type | free |
Supported Languages | 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 } } |