Regex Search

This is a chrome extension that allows you to search the text of a page using regular expressions. Please note that because of the…

Regex Search란 무엇입니까?

Regex Search은(는) gsingh93에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This is a chrome extension that allows you to search the text of a page using regular expressions. Please note that because of the…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This is a chrome extension that allows you to search the text of a page using regular expressions. Please note that because of the way web pages are written, it is very difficult to make this extension work on 100% of pages. If you have any problems, please report them on the Github issues page: https://github.com/gsingh93/regex-search/issues.


Please DO NOT try to test this extension on any URL beginning with chrome.google.com/webstore. It will NOT work. See this question for details: http://stackoverflow.com/questions/11613371/chrome-extension-content-script-on-https-chrome-google-com-webstore                    

확장 프로그램 기본 정보

이름 Regex Search Regex Search
ID bcdabfmndggphffkchfdcekcokmbnkjl
공식 URL https://chromewebstore.google.com/detail/regex-search/bcdabfmndggphffkchfdcekcokmbnkjl
설명 This is a chrome extension that allows you to search the text of a page using regular expressions. Please note that because of the…
파일 크기 53.24 KB
설치 횟수 6,475
현재 버전 1.8
최근 업데이트 2019-03-04
출시 날짜 2019-03-03
평점 3.06/5 총 178 개의 평점
개발자 gsingh93
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/gsingh93/regex-search
도움말 페이지 URL https://github.com/gsingh93/regex-search/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Regex Search",
    "version": "1.8",
    "permissions": [
        "tabs",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "css": [
                "content\/content.css"
            ],
            "js": [
                "content\/jquery.min.js",
                "content\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    },
    "options_page": "options\/options.html",
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "commands": {
        "next": {
            "suggested_key": {
                "default": "Alt+Shift+N"
            },
            "description": "Go to the next search result"
        },
        "prev": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            },
            "description": "Go to the previous search result"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+F"
            }
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}