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 } } |