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…

什麼是Global Replace All?

Global Replace All是由GirkovArpa開發的Chrome擴展程式,該擴展的主要功能是“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

下載Global Replace All擴展crx文件

下載Global Replace All擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Global Replace All Global Replace All
ID fkijnilmlghjfhphomnpgeejddbmlppm
官方網址 https://chromewebstore.google.com/detail/global-replace-all/fkijnilmlghjfhphomnpgeejddbmlppm
簡介 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…
檔案大小 16.89 KB
安裝次數 44
目前版本 0.0.0.2
更新時間 2020-10-05
上架時間 2020-06-05
評分 3.00/5 共 2 次評分
開發者 GirkovArpa
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://github.com/GirkovArpa/global-replace-all/issues
支援的語言 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"
            ]
        }
    ]
}