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…

Qu'est-ce que Global Replace All ?

Global Replace All est une extension Chrome développée par GirkovArpa, et sa fonction principale est "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…".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Global Replace All

Téléchargez les fichiers d'extension Global Replace All au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Global Replace All Global Replace All
ID fkijnilmlghjfhphomnpgeejddbmlppm
URL Officiel https://chromewebstore.google.com/detail/global-replace-all/fkijnilmlghjfhphomnpgeejddbmlppm
Description 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…
Taille du Fichier 16.89 KB
Nombre d'Installations 44
Version Actuelle 0.0.0.2
Dernière Mise à Jour 2020-10-05
Date de Publication 2020-06-05
Évaluation 3.00/5 Total 2 Évaluations
Développeur GirkovArpa
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/GirkovArpa/global-replace-all/issues
Langues Prises en Charge 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"
            ]
        }
    ]
}