copyToRegex
This extension allows you to copy text directly to the clipboard with regex special characters escaped
Что такое copyToRegex?
copyToRegex - это расширение Chrome, разработанное djmartins, и его основная функция - "This extension allows you to copy text directly to the clipboard with regex special characters escaped".
Снимки экрана расширения
Скачать файл CRX расширения copyToRegex
Скачайте файлы расширений 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 } } |