Find & Replace for Text Editing

Adds search & replace tool for input fields and editable text content.

Find & Replace for Text Editing란 무엇입니까?

Find & Replace for Text Editing은(는) Dalimil Hajek에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds search & replace tool for input fields and editable text content."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Find & Replace for Text Editing 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Find & Replace for Text Editing is an extension that allows you to search and replace text in input areas, directly in your browser. It works for any editable text, and automatically highlights all found occurrences as you type in your search term. Use it for composing long emails, blog articles, or forum posts.

Extra Features:
* Save to Favorites
* History
* Text Templates (click to paste into page)
* Regular expression info previews
* Occurrence highlighting

Search Options:
* Match Case (case-sensitive search)
* Whole Words
* Regular Expressions
* Limit search to text selection
* Include single-line inputs in search

Shortcut to Open: Ctrl+Shift+F (Mac: Cmd+Shift+F)                    

확장 프로그램 기본 정보

이름 Find & Replace for Text Editing Find & Replace for Text Editing
ID mogefjlnnldblkakpbakdaffphhjfjba
공식 URL https://chromewebstore.google.com/detail/find-replace-for-text-edi/mogefjlnnldblkakpbakdaffphhjfjba
설명 Adds search & replace tool for input fields and editable text content.
파일 크기 948 KB
설치 횟수 3,000
현재 버전 1.4.1
최근 업데이트 2024-02-14
출시 날짜 2023-12-22
평점 4.64/5 총 11 개의 평점
개발자 Dalimil Hajek
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://find-and-replace-f6588.firebaseapp.com/
도움말 페이지 URL https://find-and-replace-f6588.firebaseapp.com/
개인정보 보호 정책 페이지 URL https://find-and-replace-f6588.firebaseapp.com/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Find & Replace for Text Editing",
    "version": "1.4.1",
    "description": "Adds search & replace tool for input fields and editable text content.",
    "author": "Dalimil Hajek",
    "icons": {
        "128": "images\/icon128.png",
        "48": "images\/icon48.png",
        "32": "images\/icon32.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "scripting"
    ],
    "background": {
        "service_worker": "src\/background.js"
    },
    "action": {
        "default_title": "Find & Replace",
        "default_popup": "src\/widget\/widget.html",
        "default_icon": {
            "32": "images\/icon32.png"
        }
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "Command+Shift+F"
            }
        }
    }
}