ReplaceR

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

什么是ReplaceR?

ReplaceR是由https://iamtravisw.com开发的Chrome扩展程序,该扩展的主要功能是“ReplaceR replaces existing words on web pages with new words. Make 'Hell' become 'Heck' or 'Game of Thrones' become 'SPOILER ALERT'.”。

扩展截图

screenshot

下载ReplaceR扩展crx文件

下载ReplaceR扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 ReplaceR ReplaceR
ID jokhdedhpjlobfbnokhfjipjdhboiing
官方URL https://chromewebstore.google.com/detail/replacer/jokhdedhpjlobfbnokhfjipjdhboiing
简介 ReplaceR replaces existing words on web pages with new words. Make 'Hell' become 'Heck' or 'Game of Thrones' become 'SPOILER ALERT'.
文件大小 43.49 KB
安装次数 2,405
当前版本 1.0.3
更新时间 2023-04-18
上架时间 2018-11-01
评分 2.85/5 共20次评分
开发者 https://iamtravisw.com
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    ]
}