Image Replacer

Replace all images with whatever you want.

Image Replacer क्या है?

Image Replacer https://mysterypancake.github.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replace all images with whatever you want."।

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

screenshot
screenshot

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

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

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

                        Replace all images with whatever you want.

Code on GitHub:
https://github.com/MysteryPancake/Image-Replacer                    

एक्सटेंशन की मूल जानकारी

नाम Image Replacer Image Replacer
ID kjdfnmkplcjchfjealepndkfjgcgonib
आधिकारिक URL https://chromewebstore.google.com/detail/image-replacer/kjdfnmkplcjchfjealepndkfjgcgonib
विवरण Replace all images with whatever you want.
फ़ाइल का आकार 23.34 KB
स्थापना संख्या 3,053
वर्तमान संस्करण 1.5
अंतिम अपडेट 2023-12-06
प्रकाशन तिथि 2018-08-06
रेटिंग 4.11/5 कुल 9 रेटिंग्स
डेवलपर https://mysterypancake.github.io
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/MysteryPancake/Image-Replacer
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Image Replacer",
    "description": "Replace all images with whatever you want.",
    "author": "MysteryPancake",
    "manifest_version": 3,
    "version": "1.5",
    "action": {
        "default_title": "Image Replacer",
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "scripts\/Main.js"
            ],
            "all_frames": true
        }
    ],
    "homepage_url": "https:\/\/github.com\/MysteryPancake\/Image-Replacer",
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon256.png",
        "512": "icon512.png"
    },
    "permissions": [
        "storage"
    ],
    "short_name": "Image Replacer"
}