copyToRegex

This extension allows you to copy text directly to the clipboard with regex special characters escaped

copyToRegex là gì?

copyToRegex là một tiện ích mở rộng Chrome được phát triển bởi djmartins, và tính năng chính của nó là "This extension allows you to copy text directly to the clipboard with regex special characters escaped".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng copyToRegex

Tải xuống các tệp mở rộng copyToRegex dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên copyToRegex copyToRegex
ID cefalijlbgfcicklinejbakpmjdipjkh
URL Chính Thức https://chromewebstore.google.com/detail/copytoregex/cefalijlbgfcicklinejbakpmjdipjkh
Mô tả This extension allows you to copy text directly to the clipboard with regex special characters escaped
Kích Thước Tệp 3.85 KB
Số Lần Cài Đặt 14
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2015-06-25
Ngày Phát Hành 2015-06-25
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển djmartins
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
    }
}