Reg Search

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

Co to jest Reg Search?

Reg Search to rozszerzenie Chrome opracowane przez SFerrazLeite, a jego główną funkcją jest „Allows to search the DOM elements of a web page with regular expressions.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Reg Search

Pobierz pliki rozszerzeń Reg Search w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Reg Search Reg Search
ID ndnhmbfdiponmfjppfblcmbkcmjoibpf
Oficjalny URL https://chromewebstore.google.com/detail/reg-search/ndnhmbfdiponmfjppfblcmbkcmjoibpf
Opis Allows to search the DOM elements of a web page with regular expressions.
Rozmiar pliku 82.07 KB
Liczba instalacji 63
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2016-03-11
Data Publikacji 2016-03-11
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper SFerrazLeite
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/SFerrazLeite/reg-search
Obsługiwane Języki 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"
}