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
Eメール [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"
            ]
        }
    ]
}