Replacer

Replace or hide the words on the internet

Replacer là gì?

Replacer là một tiện ích mở rộng Chrome được phát triển bởi https://replacer.app, và tính năng chính của nó là "Replace or hide the words on the internet".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Replacer

Tải xuống các tệp mở rộng Replacer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Replacer Replacer
ID cnaegfealmimnhmjhieeokofoeddejjk
URL Chính Thức https://chromewebstore.google.com/detail/replacer/cnaegfealmimnhmjhieeokofoeddejjk
Mô tả Replace or hide the words on the internet
Kích Thước Tệp 44.17 KB
Số Lần Cài Đặt 233
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2022-04-05
Ngày Phát Hành 2022-04-02
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://replacer.app
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://replacer.app/
URL Trang Chính Sách Bảo Mật https://darkreader.org/privacy
Ngôn Ngữ Được Hỗ Trợ 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__"
        }
    }
}