find+ | Regex Find-in-Page Tool

A find-in-page extension for Google Chrome with support for regular expressions.

find+ | Regex Find-in-Page Tool란 무엇입니까?

find+ | Regex Find-in-Page Tool은(는) Brandon Richardson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A find-in-page extension for Google Chrome with support for regular expressions."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

find+ | Regex Find-in-Page Tool 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        {find+} is a powerful Find-in-Page extension for Google Chrome allowing you to search a web page or document by regular expression. It has been designed to look and behave much like the native CTRL-F tool, but extended with various useful features.

With {find+}, you can match any legal JavaScript regular expression against text in the page, use find-and-replace to replace text in the page, copy occurrences of a regex to your clipboard, store frequently used expressions, and configure the extension the way you like.

As a software developer, looking through lengthy stack traces, continuous integration build history, or large text files is something we do very regularly. The Chrome Find-in-Page tool works well in most cases, but offers very little when looking for very specific (or very general) keywords.

A few notes:
- This tool was designed and built for developers. If you're not familiar with using regular expressions, this tool is not for you.
- This tool does not support dynamic pages. The purpose of this tool is to search for patterns in structured text, not in pages like Google Sheets or similar sites.
- This tool will struggle with significantly large pages. In these cases, using another tool might be more appropriate.                    

확장 프로그램 기본 정보

이름 find+ | Regex Find-in-Page Tool find+ | Regex Find-in-Page Tool
ID fddffkdncgkkdjobemgbpojjeffmmofb
공식 URL https://chromewebstore.google.com/detail/find+-regex-find-in-page/fddffkdncgkkdjobemgbpojjeffmmofb
설명 A find-in-page extension for Google Chrome with support for regular expressions.
파일 크기 112 KB
설치 횟수 10,000
현재 버전 2.2.2
최근 업데이트 2021-09-14
출시 날짜 2020-02-17
평점 4.16/5 총 120 개의 평점
개발자 Brandon Richardson
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/brandon1024/find
도움말 페이지 URL https://github.com/brandon1024/find
개인정보 보호 정책 페이지 URL https://github.com/brandon1024/find/blob/master/.github/PRIVACY.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extension_name__",
    "short_name": "find+",
    "version": "2.2.2",
    "author": [
        "Michael Walz",
        "Brandon Richardson"
    ],
    "manifest_version": 2,
    "description": "__MSG_extension_description__",
    "default_locale": "en",
    "permissions": [
        "tabs",
        "activeTab",
        "background",
        "storage",
        "contextMenus",
        ""
    ],
    "icons": {
        "128": "resources\/icon.png",
        "16": "resources\/icon.png",
        "48": "resources\/icon.png"
    },
    "browser_action": {
        "default_icon": "resources\/icon.png",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "app.js",
            "\/background\/browser-action-proxy.js",
            "\/background\/content-proxy.js",
            "\/background\/background.js",
            "\/background\/omni.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": false,
            "run_at": "document_end",
            "js": [
                "app.js",
                "\/lib\/html-entity-handler\/entityhandler.js",
                "\/content\/content.js",
                "\/content\/parser.js",
                "\/content\/highlighter.js"
            ]
        }
    ],
    "omnibox": {
        "keyword": "find"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            }
        }
    },
    "offline_enabled": true,
    "incognito": "split"
}