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
官方網址 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
電子郵箱 [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"
    }
}