Image Hack

replace all html elements that have no children with an image

Apa itu Image Hack?

Image Hack adalah ekstensi Chrome yang dikembangkan oleh czachbenton, dan fitur utamanya adalah "replace all html elements that have no children with an image".

Unduh Berkas CRX Ekstensi Image Hack

Unduh file ekstensi Image Hack dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Image Hack Image Hack
ID adphppnjfdnokbpaofhclnldfgmbdecf
URL Resmi https://chrome.google.com/webstore/detail/image-hack/adphppnjfdnokbpaofhclnldfgmbdecf
Deskripsi replace all html elements that have no children with an image
Ukuran File 6.35 KB
Jumlah Instalasi 19
Versi Saat Ini 0.1
Terakhir Diperbarui 2017-08-09
Tanggal Publikasi 2017-08-09
Pengembang czachbenton
Tipe Pembayaran free
Bahasa yang Didukung 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"
        ]
    }
}