Find and replace

A tool that help you find and replace text.

Find and replace क्या है?

Find and replace zhanghengyou द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A tool that help you find and replace text."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Find and replace एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Supports:
    1. Find and replace automatically after web page loading is complete.
    2. Save multiple rules.
    3. Run automatic, manual or realtime.
    4. The search results can be used as parameters in the replace text.
    5. Use regular expressions for matching.
    6. Support groups.
    7. Support context menu and keyboard shortcuts.
    8. Open in sidebar or popup.                    

एक्सटेंशन की मूल जानकारी

नाम Find and replace Find and replace
ID bhmpidliobdjgkohacnkgfagkdmckcia
आधिकारिक URL https://chromewebstore.google.com/detail/find-and-replace/bhmpidliobdjgkohacnkgfagkdmckcia
विवरण A tool that help you find and replace text.
फ़ाइल का आकार 141 KB
स्थापना संख्या 1,342
वर्तमान संस्करण 2.7
अंतिम अपडेट 2024-02-26
प्रकाशन तिथि 2023-04-25
रेटिंग 4.56/5 कुल 16 रेटिंग्स
डेवलपर zhanghengyou
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Find and replace",
    "description": "A tool that help you find and replace text.",
    "version": "2.7",
    "manifest_version": 3,
    "permissions": [
        "tabs",
        "activeTab",
        "scripting",
        "storage",
        "sidePanel",
        "contextMenus"
    ],
    "icons": {
        "16": "find_and_replace.png",
        "32": "find_and_replace.png",
        "48": "find_and_replace.png"
    },
    "action": {
        "default_icon": "find_and_replace.png"
    },
    "side_panel": {
        "default_path": "index.html"
    },
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "commands": {
        "settings.keyboard_shortcut.cmd1": {
            "suggested_key": "Ctrl+1",
            "description": "1"
        },
        "settings.keyboard_shortcut.cmd2": {
            "suggested_key": "Ctrl+2",
            "description": "2"
        },
        "settings.keyboard_shortcut.cmd3": {
            "suggested_key": "Ctrl+3",
            "description": "3"
        },
        "settings.keyboard_shortcut.cmd4": {
            "suggested_key": "Ctrl+4",
            "description": "4"
        }
    }
}