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
Eメール [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__"
        }
    }
}