Global Replace All

A Chrome extension to automatically find and replace in all tabs in all textareas and inputs upon enter press, and as soon as a tab…

Τι είναι το Global Replace All;

Το Global Replace All είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον GirkovArpa, και η κύρια λειτουργία του είναι "A Chrome extension to automatically find and replace in all tabs in all textareas and inputs upon enter press, and as soon as a tab…".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Global Replace All

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

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

                        A Chrome extension to automatically find and replace in all tabs in all textareas and inputs upon enter press, and as soon as a tab is loaded.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Global Replace All Global Replace All
ID fkijnilmlghjfhphomnpgeejddbmlppm
Επίσημο URL https://chromewebstore.google.com/detail/global-replace-all/fkijnilmlghjfhphomnpgeejddbmlppm
Περιγραφή A Chrome extension to automatically find and replace in all tabs in all textareas and inputs upon enter press, and as soon as a tab…
Μέγεθος Αρχείου 16.89 KB
Αριθμός Εγκαταστάσεων 44
Τρέχουσα Έκδοση 0.0.0.2
Τελευταία Ενημέρωση 2020-10-05
Ημερομηνία Δημοσίευσης 2020-06-05
Αξιολόγηση 3.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής GirkovArpa
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/GirkovArpa/global-replace-all/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Global Replace All",
    "permissions": [
        "tabs",
        "activeTab"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "version": "0.0.0.2",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "Global Replace All",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}