copyToRegex
This extension allows you to copy text directly to the clipboard with regex special characters escaped
Was ist copyToRegex?
copyToRegex ist eine Chrome-Erweiterung, die von djmartins entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to copy text directly to the clipboard with regex special characters escaped".
Erweiterungsscreenshots
copyToRegex-Erweiterungs-CRX-Datei herunterladen
Laden Sie copyToRegex-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | cefalijlbgfcicklinejbakpmjdipjkh |
Offizielle URL | https://chromewebstore.google.com/detail/copytoregex/cefalijlbgfcicklinejbakpmjdipjkh |
Beschreibung | This extension allows you to copy text directly to the clipboard with regex special characters escaped |
Dateigröße | 3.85 KB |
Installationsanzahl | 14 |
Aktuelle Version | 0.1 |
Letztes Update | 2015-06-25 |
Veröffentlichungsdatum | 2015-06-25 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | djmartins |
Zahlungsart | free |
Unterstützte Sprachen | 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 } } |