Find and replace

A tool that help you find and replace text.

Τι είναι το Find and replace;

Το Find and replace είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον zhanghengyou, και η κύρια λειτουργία του είναι "A tool that help you find and replace text.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Find and replace

Λήψη αρχείων επέκτασης Find and replace σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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