Replacer

Replace or hide the words on the internet

Replacerคืออะไร?

Replacer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://replacer.app และคุณลักษณะหลักของมันคือ "Replace or hide the words on the internet"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Replacer

ดาวน์โหลดไฟล์ส่วนขยาย 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__"
        }
    }
}