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…

Apa itu Global Replace All?

Global Replace All adalah ekstensi Chrome yang dikembangkan oleh GirkovArpa, dan fitur utamanya adalah "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…".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Global Replace All

Unduh file ekstensi Global Replace All dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Global Replace All Global Replace All
ID fkijnilmlghjfhphomnpgeejddbmlppm
URL Resmi https://chromewebstore.google.com/detail/global-replace-all/fkijnilmlghjfhphomnpgeejddbmlppm
Deskripsi 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…
Ukuran File 16.89 KB
Jumlah Instalasi 44
Versi Saat Ini 0.0.0.2
Terakhir Diperbarui 2020-10-05
Tanggal Publikasi 2020-06-05
Penilaian 3.00/5 Total 2 Penilaian
Pengembang GirkovArpa
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://github.com/GirkovArpa/global-replace-all/issues
Bahasa yang Didukung 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"
            ]
        }
    ]
}