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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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