copyToRegex
This extension allows you to copy text directly to the clipboard with regex special characters escaped
Qu'est-ce que copyToRegex ?
copyToRegex est une extension Chrome développée par djmartins, et sa fonction principale est "This extension allows you to copy text directly to the clipboard with regex special characters escaped".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension copyToRegex
Téléchargez les fichiers d'extension copyToRegex au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | cefalijlbgfcicklinejbakpmjdipjkh |
URL Officiel | https://chromewebstore.google.com/detail/copytoregex/cefalijlbgfcicklinejbakpmjdipjkh |
Description | This extension allows you to copy text directly to the clipboard with regex special characters escaped |
Taille du Fichier | 3.85 KB |
Nombre d'Installations | 14 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2015-06-25 |
Date de Publication | 2015-06-25 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | djmartins |
Type de Paiement | free |
Langues Prises en Charge | 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 } } |