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"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ copyToRegex copyToRegex
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
    }
}