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…

Vad är Global Replace All?

Global Replace All är en Chrome-tillägg utvecklad av GirkovArpa, och dess huvudfunktion är "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…".

Tilläggsskärmbilder

screenshot

Ladda ner Global Replace All-förlängningens CRX-fil

Ladda ner Global Replace All-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Global Replace All Global Replace All
ID fkijnilmlghjfhphomnpgeejddbmlppm
Officiell webbadress https://chromewebstore.google.com/detail/global-replace-all/fkijnilmlghjfhphomnpgeejddbmlppm
Beskrivning 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…
Filstorlek 16.89 KB
Antal Installationer 44
Aktuell Version 0.0.0.2
Senast Uppdaterad 2020-10-05
Publiceringsdatum 2020-06-05
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare GirkovArpa
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://github.com/GirkovArpa/global-replace-all/issues
Stödda Språk 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"
            ]
        }
    ]
}