ReplaceR

ReplaceR replaces existing words on web pages with new words. Make 'Hell' become 'Heck' or 'Game of Thrones' become 'SPOILER ALERT'.

ReplaceR là gì?

ReplaceR là một tiện ích mở rộng Chrome được phát triển bởi https://iamtravisw.com, và tính năng chính của nó là "ReplaceR replaces existing words on web pages with new words. Make 'Hell' become 'Heck' or 'Game of Thrones' become 'SPOILER ALERT'.".

Ả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 ReplaceR

Tải xuống các tệp mở rộng ReplaceR 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

                        ReplaceR is a Google Chrome extension that lets you take specific words that show up in your Google Chrome browser and replace them with new words. For example, you can take the word "Hell" and make it look like "Heck". 
 

Why would you want to do that?

1. Get warnings about SPOILERS!
   Let's say you watch George R.R. Martin's smash hit Game of Thrones on HBO. You can Enter 'GoT' and 'Game of Thrones' into ReplaceR and have it read back "SPOILERS!" so that you have a fighting chance to avoid reading what happens to Khaleesi next.
       

2. Don't like curse words? Maybe certain words trigger you?
   Maybe you don't like curse words. You can replace those filthy words with ***** or different words. Or perhaps certain words just make you cringe... Same idea! You can swap those words out for something more acceptable to you.


3. Correct Capitalization
   You can use ReplaceR to change the capitalization of words. For example, you can change eSports to always show as Esports.

How to use ReplaceR:

Add a Word:
1. Right click on the ReplaceR icon and select options.
2. Add a word to replace and a word to replace the word with.
3. Click Submit. 
Note: You will need to refresh your pages for ReplaceR to start doing it's job.

Delete a Replacement:
1. Right click on the ReplaceR icon and select options.
2. Find the word you want to remove in the table.
3. Click the Delete button.
Note: You will need to refresh your pages for ReplaceR to update.                    

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

Tên ReplaceR ReplaceR
ID jokhdedhpjlobfbnokhfjipjdhboiing
URL Chính Thức https://chromewebstore.google.com/detail/replacer/jokhdedhpjlobfbnokhfjipjdhboiing
Mô tả ReplaceR replaces existing words on web pages with new words. Make 'Hell' become 'Heck' or 'Game of Thrones' become 'SPOILER ALERT'.
Kích Thước Tệp 43.49 KB
Số Lần Cài Đặt 2,405
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2023-04-18
Ngày Phát Hành 2018-11-01
Đánh Giá 2.85/5 Tổng số 20 Đánh Giá
Nhà Phát Triển https://iamtravisw.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ReplaceR",
    "description": "ReplaceR replaces existing words on web pages with new words. Make 'Hell' become 'Heck' or 'Game of Thrones' become 'SPOILER ALERT'.",
    "version": "1.0.3",
    "author": "Travis Woodward",
    "browser_action": {
        "default_icon": "replacer.png",
        "default_title": "ReplaceR"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js",
                "jquery.min.js"
            ],
            "exclude_globs": [
                "*options*"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ]
}