Image Hack

replace all html elements that have no children with an image

什麼是Image Hack?

Image Hack是由czachbenton開發的Chrome擴展程式,該擴展的主要功能是“replace all html elements that have no children with an image”。

下載Image Hack擴展crx文件

下載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
官方網址 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"
        ]
    }
}