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…

What is Global Replace All?

Global Replace All is a Chrome extension developed by GirkovArpa, and its main feature 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…".

Extension Screenshots

screenshot

Download Global Replace All Extension CRX File

Download Global Replace All extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Global Replace All Global Replace All
ID fkijnilmlghjfhphomnpgeejddbmlppm
Official URL 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…
File Size 16.89 KB
Installation Count 44
Current Version 0.0.0.2
Last Updated 2020-10-05
Publish Date 2020-06-05
Rating 3.00/5 Total 2 Ratings
Developer GirkovArpa
Email [email protected]
Payment Type free
Help Page URL https://github.com/GirkovArpa/global-replace-all/issues
Supported Languages 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"
            ]
        }
    ]
}