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 που αναπτύχθηκε από τον banho27, και η κύρια λειτουργία του είναι "Adds search & replace tool for input fields and editable text content.".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Find & Replace for Text Editing

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

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

                        Find & Replace allows you to search and replace text in editable areas, directly in your browser. IT WILL NOT WORK WITH STATIC TEXT (ex. this page). Use it for composing long emails, blog articles, or forum posts.

This extension DOES NOT support find & replace for the following:  
-Shopify (try our other app: https://apps.shopify.com/seeker)
-Google Docs, Sheets, Forms, Slides
-Jupyter Notebooks 
-Confluence
-Wordpress
-Magento

Regarding email sharing, we take your privacy very seriously and will never use your information for anything other than communicating directly about the extension, updates etc. 

For an update log, go to www.findreplacer.com/updates

Core Features:
 * Find and replace multiple queries in one click (premium - $9.95 for lifetime usage)
 * Save to Favorites 
 * Text Templates (click to paste into page)
 * Regular expression info previews

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 jajhdmnpiocpbpnlpejbgmpijgmoknnl
Επίσημο URL https://chrome.google.com/webstore/detail/find-replace-for-text-edi/jajhdmnpiocpbpnlpejbgmpijgmoknnl
Περιγραφή Adds search & replace tool for input fields and editable text content.
Μέγεθος Αρχείου 945 KB
Αριθμός Εγκαταστάσεων 50,000
Τρέχουσα Έκδοση 1.3.40
Τελευταία Ενημέρωση 2023-10-05
Ημερομηνία Δημοσίευσης 2020-05-06
Αξιολόγηση 3.84/5 Συνολικά 246 Αξιολογήσεις
Προγραμματιστής banho27
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.findreplacer.com/
Διεύθυνση URL της Σελίδας Βοήθειας https://www.findreplacer.com/
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Find & Replace for Text Editing",
    "version": "1.3.40",
    "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"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "src\/jman.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "browser_action": {
        "default_title": "Find & Replace",
        "default_popup": "src\/widget\/widget.html",
        "default_icon": {
            "32": "images\/icon32.png"
        }
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "Command+Shift+F"
            }
        }
    }
}