Search and Replace

Search for text on a webpage and replace it with different text.

Search and Replaceคืออะไร?

Search and Replace เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Chris Taylor และคุณลักษณะหลักของมันคือ "Search for text on a webpage and replace it with different text."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Search and Replace

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

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

                        Allows you to search for text anywhere on the page and replace it with different text. For example:

- edit text in editors in WordPress, Drupal, Notion, Etsy, eBay, Amazon +more!
- quickly correct forms in which the wrong information has been entered multiple times
- edit the HTML of the page
- use regular expressions as a search term
- edit hidden fields
- apply matches from the regular expressions search term as part of the replacement
- save the search and replace instance and apply to all subsequent page visits
- match pages by regular expressions to apply one rule to many different web pages

Please Note:
1. You must refresh the page or restart chrome before using.
2. The popup will not stay open if you click elsewhere. This is a feature of Chrome.

View a video of it in action here: http://www.youtube.com/watch?v=tf0D8RUdwkI                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Search and Replace Search and Replace
ID bldchfkhmnkoimaciljpilanilmbnofo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/search-and-replace/bldchfkhmnkoimaciljpilanilmbnofo
คำอธิบาย Search for text on a webpage and replace it with different text.
ขนาดไฟล์ 701 KB
จำนวนการติดตั้ง 58,526
เวอร์ชันปัจจุบัน 2.0.8
อัปเดตครั้งล่าสุด 2024-01-31
วันที่เผยแพร่ 2015-08-20
คะแนน 3.15/5 รวมทั้งหมด 370 คะแนน
ผู้พัฒนา Chris Taylor
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/forgetso/search-replace
URL หน้าช่วยเหลือ https://github.com/forgetso/search-replace
ภาษาที่รองรับ de,en,es,pt-PT,ru,hi,ar,zh-CN,ja,ko
manifest.json
{
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "assets\/icon.png",
        "default_popup": "assets\/popup.html",
        "default_title": "Search and Replace"
    },
    "commands": {
        "toggle-popup": {
            "description": "Toggle Search and Replace popup",
            "global": true,
            "suggested_key": {
                "default": "Ctrl+Shift+S"
            }
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "searchreplace.js",
                "options.js",
                "popup.js",
                "util.js",
                "help.js",
                "elements.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ]
        }
    ],
    "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCr3R0tWRUKUERxg\/cghorcvKPDxba+0Ko\/3Metk\/0XsUTPZcU1xBQZCY441i3lK2ZkH\/Td3rs\/l8HvbVnkN37NiFm0QQOIJGJi7vp1GdQsrr5uZA\/611TsQAWpxxHzR9N4km5wu8e\/Xmw2ZG5WKfWVPtUhozEDHTk5CVgeTUOMAQIDAQAB",
    "default_locale": "en",
    "name": "Search and Replace",
    "description": "__MSG_ext_description__",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "storage",
        "notifications"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.0.8",
    "options_page": "assets\/options.html",
    "icons": {
        "16": "assets\/icon-16.png",
        "32": "assets\/icon-32.png",
        "64": "assets\/icon-64.png",
        "128": "assets\/icon-128.png",
        "256": "assets\/icon-256.png",
        "512": "assets\/icon-512.png"
    }
}