Word Changer

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

Word Changer là gì?

Word Changer là một tiện ích mở rộng Chrome được phát triển bởi skulegirlanna, và tính năng chính của nó là "Have fun replacing all instances of one word with another on pages you visit.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Word Changer

Tải xuống các tệp mở rộng Word Changer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Word Changer Word Changer
ID jjaeodeafkbbimejiboehejbdgpebjcd
URL Chính Thức https://chromewebstore.google.com/detail/word-changer/jjaeodeafkbbimejiboehejbdgpebjcd
Mô tả Have fun replacing all instances of one word with another on pages you visit.
Kích Thước Tệp 12.41 KB
Số Lần Cài Đặt 1,361
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2021-03-08
Ngày Phát Hành 2020-02-19
Đánh Giá 2.43/5 Tổng số 14 Đánh Giá
Nhà Phát Triển skulegirlanna
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}