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