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…

Wat is Global Replace All?

Global Replace All is een Chrome-extensie ontwikkeld door GirkovArpa, en de belangrijkste functie is "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…".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Global Replace All

Download Global Replace All-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Global Replace All Global Replace All
ID fkijnilmlghjfhphomnpgeejddbmlppm
Officiële URL https://chromewebstore.google.com/detail/global-replace-all/fkijnilmlghjfhphomnpgeejddbmlppm
Beschrijving 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…
Bestandsgrootte 16.89 KB
Aantal Installaties 44
Huidige Versie 0.0.0.2
Laatst Bijgewerkt 2020-10-05
Publicatiedatum 2020-06-05
Beoordeling 3.00/5 Totaal 2 Beoordelingen
Ontwikkelaar GirkovArpa
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://github.com/GirkovArpa/global-replace-all/issues
Ondersteunde Talen 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"
            ]
        }
    ]
}