Replacer

Replace or hide the words on the internet

什么是Replacer?

Replacer是由https://replacer.app开发的Chrome扩展程序,该扩展的主要功能是“Replace or hide the words on the internet”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Replacer扩展crx文件

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

扩展使用说明

                        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!                    

扩展基本信息

名称 Replacer Replacer
ID cnaegfealmimnhmjhieeokofoeddejjk
官方URL https://chromewebstore.google.com/detail/replacer/cnaegfealmimnhmjhieeokofoeddejjk
简介 Replace or hide the words on the internet
文件大小 44.17 KB
安装次数 233
当前版本 1.0.0
更新时间 2022-04-05
上架时间 2022-04-02
评分 4.00/5 共2次评分
开发者 https://replacer.app
电子邮箱 [email protected]
付费类型 free
扩展官网 https://replacer.app/
隐私政策页面URL https://darkreader.org/privacy
支持的语言 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__"
        }
    }
}