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…

Was ist Global Replace All?

Global Replace All ist eine Chrome-Erweiterung, die von GirkovArpa entwickelt wurde, und ihr Hauptmerkmal ist "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…".

Erweiterungsscreenshots

screenshot

Global Replace All-Erweiterungs-CRX-Datei herunterladen

Laden Sie Global Replace All-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Global Replace All Global Replace All
ID fkijnilmlghjfhphomnpgeejddbmlppm
Offizielle URL https://chromewebstore.google.com/detail/global-replace-all/fkijnilmlghjfhphomnpgeejddbmlppm
Beschreibung 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…
Dateigröße 16.89 KB
Installationsanzahl 44
Aktuelle Version 0.0.0.2
Letztes Update 2020-10-05
Veröffentlichungsdatum 2020-06-05
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler GirkovArpa
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/GirkovArpa/global-replace-all/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}