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