Reg Search

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

Reg Search란 무엇입니까?

Reg Search은(는) SFerrazLeite에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows to search the DOM elements of a web page with regular expressions."입니다.

확장 프로그램 스크린샷

screenshot

Reg Search 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 Reg Search Reg Search
ID ndnhmbfdiponmfjppfblcmbkcmjoibpf
공식 URL https://chromewebstore.google.com/detail/reg-search/ndnhmbfdiponmfjppfblcmbkcmjoibpf
설명 Allows to search the DOM elements of a web page with regular expressions.
파일 크기 82.07 KB
설치 횟수 63
현재 버전 1.0
최근 업데이트 2016-03-11
출시 날짜 2016-03-11
평점 4.00/5 총 1 개의 평점
개발자 SFerrazLeite
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/SFerrazLeite/reg-search
지원되는 언어 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"
}