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…

Hvad er Global Replace All?

Global Replace All er en Chrome-udvidelse udviklet af GirkovArpa, og dens hovedfunktion er "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…".

Udvidelsesskærmbilleder

screenshot

Download Global Replace All-udvidelses-CRX-fil

Download Global Replace All-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Global Replace All Global Replace All
ID fkijnilmlghjfhphomnpgeejddbmlppm
Officiel URL https://chromewebstore.google.com/detail/global-replace-all/fkijnilmlghjfhphomnpgeejddbmlppm
Beskrivelse 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…
Filstørrelse 16.89 KB
Antal Installationer 44
Nuværende Version 0.0.0.2
Senest Opdateret 2020-10-05
Udgivelsesdato 2020-06-05
Bedømmelse 3.00/5 Samlet 2 Bedømmelser
Udvikler GirkovArpa
E-mail [email protected]
Betalingsmetode free
Hjælpeside-URL https://github.com/GirkovArpa/global-replace-all/issues
Understøttede Sprog 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"
            ]
        }
    ]
}