ReplaceR

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

Qu'est-ce que ReplaceR ?

ReplaceR est une extension Chrome développée par https://iamtravisw.com, et sa fonction principale est "ReplaceR replaces existing words on web pages with new words. Make 'Hell' become 'Heck' or 'Game of Thrones' become 'SPOILER ALERT'.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension ReplaceR

Téléchargez les fichiers d'extension ReplaceR au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom ReplaceR ReplaceR
ID jokhdedhpjlobfbnokhfjipjdhboiing
URL Officiel https://chromewebstore.google.com/detail/replacer/jokhdedhpjlobfbnokhfjipjdhboiing
Description ReplaceR replaces existing words on web pages with new words. Make 'Hell' become 'Heck' or 'Game of Thrones' become 'SPOILER ALERT'.
Taille du Fichier 43.49 KB
Nombre d'Installations 2,405
Version Actuelle 1.0.3
Dernière Mise à Jour 2023-04-18
Date de Publication 2018-11-01
Évaluation 2.85/5 Total 20 Évaluations
Développeur https://iamtravisw.com
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}