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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dalimil Hajek และคุณลักษณะหลักของมันคือ "Adds search & replace tool for input fields and editable text content."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Find & Replace for Text Editing

ดาวน์โหลดไฟล์ส่วนขยาย Find & Replace for Text Editing ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            }
        }
    }
}