Word Changer

Have fun replacing all instances of one word with another on pages you visit.

Word Changerとは何ですか?

Word Changerはskulegirlannaによって開発されたChromeの拡張機能で、その主な機能は「Have fun replacing all instances of one word with another on pages you visit.」です。

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

screenshot

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

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

拡張機能の使用方法

                        This extension lets you change a word of your choosing with a different one on websites that you're viewing. 

For instance, you can change "Bill Gates" to "Shrek" on his Wikipedia page! What fun!   

Configure the search and replace words in the extension. Then click on the extension in your browser while on a page where you want to do the word changing, and voila!

Note that this is actually written by my 8 & 10 year old sons, who think this is the best way to learn how to program.                    

拡張機能の基本情報

名前 Word Changer Word Changer
ID jjaeodeafkbbimejiboehejbdgpebjcd
公式URL https://chromewebstore.google.com/detail/word-changer/jjaeodeafkbbimejiboehejbdgpebjcd
説明 Have fun replacing all instances of one word with another on pages you visit.
ファイルサイズ 12.41 KB
インストール数 1,361
現在のバージョン 0.2
最終更新日 2021-03-08
公開日 2020-02-19
評価 2.43/5 合計 14 レビュー
開発者 skulegirlanna
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Changer",
    "description": "Have fun replacing all instances of one word with another on pages you visit.",
    "version": "0.2",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Run WordChanger!"
    },
    "icons": {
        "16": "Icon16.png",
        "48": "Icon48.png",
        "128": "Icon128.png"
    }
}