Replacer

Replaces all images with an image of your choice

ما هو Replacer؟

Replacer هو إضافة Chrome تم تطويرها بواسطة michaelm244، والميزة الرئيسية لها هي "Replaces all images with an image of your choice".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Replacer

قم بتنزيل ملفات الامتداد Replacer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        There's all these extensions that let you replace all images on the page with ____. So, why not make your own? Just enter something you want to search, and all the images on the page will get replaced with that.                    

معلومات أساسية عن التمديد

الاسم Replacer Replacer
ID nkkofabfinoleplbkkbmhhkjmomdgpag
عنوان URL الرسمي https://chrome.google.com/webstore/detail/replacer/nkkofabfinoleplbkkbmhhkjmomdgpag
الوصف Replaces all images with an image of your choice
حجم الملف 606 KB
عدد التثبيتات 294
النسخة الحالية 1.0
آخر تحديث 2014-01-18
تاريخ النشر 2014-01-18
تقييم 2.07/5 مجموع تقييمات 14
المطور michaelm244
نوع الدفع free
موقع الإضافة https://github.com/michaelm244/replacer
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Replacer",
    "description": "Replaces all images with an image of  your choice",
    "version": "1.0",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "https:\/\/www.google.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "background.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.google.com; object-src 'self'"
}