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
官方網址 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__"
        }
    }
}