Replacer

Replace or hide the words on the internet

Wat is Replacer?

Replacer is een Chrome-extensie ontwikkeld door https://replacer.app, en de belangrijkste functie is "Replace or hide the words on the internet".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Replacer

Download Replacer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Internet is full of slurs or other disappointing content. Replacer lets you hide or replace some words or phrases with more comfortable for you. Or you can just have fun. Let's make the web friendlier!                    

Basisinformatie over de Extensie

Naam Replacer Replacer
ID cnaegfealmimnhmjhieeokofoeddejjk
Officiële URL https://chromewebstore.google.com/detail/replacer/cnaegfealmimnhmjhieeokofoeddejjk
Beschrijving Replace or hide the words on the internet
Bestandsgrootte 44.17 KB
Aantal Installaties 233
Huidige Versie 1.0.0
Laatst Bijgewerkt 2022-04-05
Publicatiedatum 2022-04-02
Beoordeling 4.00/5 Totaal 2 Beoordelingen
Ontwikkelaar https://replacer.app
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://replacer.app/
URL van de Privacybeleid Pagina https://darkreader.org/privacy
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Replacer",
    "version": "1.0.0",
    "author": "Alexander Shutau",
    "description": "__MSG_extension_description__",
    "default_locale": "en",
    "action": {
        "default_title": "Replacer",
        "default_popup": "popup\/index.html",
        "default_icon": {
            "38": "icons\/icon-38x38.png",
            "19": "icons\/icon-19x19.png"
        }
    },
    "icons": {
        "16": "icons\/icon-16x16.png",
        "48": "icons\/icon-48x48.png",
        "128": "icons\/icon-128x128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "replacer.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "permissions": [
        "scripting",
        "storage",
        "tabs",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "commands": {
        "toggle_extension": {
            "description": "__MSG_toggle_extension__"
        },
        "toggle_website": {
            "description": "__MSG_toggle_website__"
        }
    }
}