Replacer

Replace or hide the words on the internet

Replacer क्या है?

Replacer https://replacer.app द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replace or hide the words on the internet"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Replacer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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__"
        }
    }
}