copyToRegex

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

什麼是copyToRegex?

copyToRegex是由djmartins開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to copy text directly to the clipboard with regex special characters escaped”。

擴展截圖

screenshot

下載copyToRegex擴展crx文件

下載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
官方網址 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
    }
}