Reg Search

Allows to search the DOM elements of a web page with regular expressions.

Apa itu Reg Search?

Reg Search adalah ekstensi Chrome yang dikembangkan oleh SFerrazLeite, dan fitur utamanya adalah "Allows to search the DOM elements of a web page with regular expressions.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Reg Search

Unduh file ekstensi Reg Search dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Allows to search the DOM elements of a web page with regular expressions.                    

Informasi Dasar Ekstensi

Nama Reg Search Reg Search
ID ndnhmbfdiponmfjppfblcmbkcmjoibpf
URL Resmi https://chromewebstore.google.com/detail/reg-search/ndnhmbfdiponmfjppfblcmbkcmjoibpf
Deskripsi Allows to search the DOM elements of a web page with regular expressions.
Ukuran File 82.07 KB
Jumlah Instalasi 63
Versi Saat Ini 1.0
Terakhir Diperbarui 2016-03-11
Tanggal Publikasi 2016-03-11
Penilaian 4.00/5 Total 1 Penilaian
Pengembang SFerrazLeite
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/SFerrazLeite/reg-search
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "eventPage\/eventPage.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+F"
            }
        },
        "next": {
            "description": "Go to the next search result",
            "suggested_key": {
                "default": "Alt+N"
            }
        },
        "prev": {
            "description": "Go to the previous search result",
            "suggested_key": {
                "default": "Alt+P"
            }
        },
        "copy": {
            "description": "Copy search results as JSON array to clip board",
            "suggested_key": {
                "default": "Alt+C"
            }
        }
    },
    "content_scripts": [
        {
            "css": [
                "content\/content.css"
            ],
            "js": [
                "content\/jquery.min.js",
                "content\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png"
    },
    "manifest_version": 2,
    "name": "Reg Search",
    "options_page": "options\/options.html",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "clipboardWrite"
    ],
    "version": "1.0"
}