Word Replace And Load

Replace all words you in your current page to anything you want!

Word Replace And Loadとは何ですか?

Word Replace And Loadはjerryblum.ideasによって開発されたChromeの拡張機能で、その主な機能は「Replace all words you in your current page to anything you want!」です。

拡張機能のスクリーンショット

screenshot

Word Replace And Load拡張機能のCRXファイルをダウンロード

Word Replace And Load拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension allows users to easily replace a specific word with a different word of their choosing on any webpage. Simply type in the word you wish to replace and the word you want to use as a replacement, and the extension will automatically replace every instance of the chosen word on the page. This can be useful for correcting typos, updating outdated language, or simply personalizing the content of a webpage to your liking. The extension works on any website and can even be used to replace words within text forms, making it a versatile and convenient tool for modifying web content!                    

拡張機能の基本情報

名前 Word Replace And Load Word Replace And Load
ID pbjnbneghgdchjkbeiifmfigjcgbefoi
公式URL https://chrome.google.com/webstore/detail/word-replace-and-load/pbjnbneghgdchjkbeiifmfigjcgbefoi
説明 Replace all words you in your current page to anything you want!
ファイルサイズ 18.75 KB
インストール数 3,635
現在のバージョン 1
最終更新日 2022-12-26
公開日 2022-12-26
評価 1.00/5 合計 1 レビュー
開発者 jerryblum.ideas
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://home.wallationdistry.xyz/
ヘルプページのURL https://home.wallationdistry.xyz/contact.html
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Replace all words you in your current page to anything you want!",
    "icons": {
        "128": "logo.png"
    },
    "action": {
        "default_icon": "logo.png",
        "default_title": "Word Replace And Load",
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "name": "Word Replace And Load",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}