Image Hack

replace all html elements that have no children with an image

ما هو Image Hack؟

Image Hack هو إضافة Chrome تم تطويرها بواسطة czachbenton، والميزة الرئيسية لها هي "replace all html elements that have no children with an image".

تحميل ملف CRX للإضافة Image Hack

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

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

                        Simple extension that will give you the option to replace all html elements with an image of your choice. Just for fun!                    

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

الاسم Image Hack Image Hack
ID adphppnjfdnokbpaofhclnldfgmbdecf
عنوان URL الرسمي https://chrome.google.com/webstore/detail/image-hack/adphppnjfdnokbpaofhclnldfgmbdecf
الوصف replace all html elements that have no children with an image
حجم الملف 6.35 KB
عدد التثبيتات 19
النسخة الحالية 0.1
آخر تحديث 2017-08-09
تاريخ النشر 2017-08-09
المطور czachbenton
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Image Hack",
    "description": "replace all html elements that have no children with an image",
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}