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
官方URL 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"
            ]
        }
    ]
}