Image Hack

replace all html elements that have no children with an image

Image Hack là gì?

Image Hack là một tiện ích mở rộng Chrome được phát triển bởi czachbenton, và tính năng chính của nó là "replace all html elements that have no children with an image".

Tải xuống tệp CRX của tiện ích mở rộng Image Hack

Tải xuống các tệp mở rộng Image Hack dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Image Hack Image Hack
ID adphppnjfdnokbpaofhclnldfgmbdecf
URL Chính Thức https://chrome.google.com/webstore/detail/image-hack/adphppnjfdnokbpaofhclnldfgmbdecf
Mô tả replace all html elements that have no children with an image
Kích Thước Tệp 6.35 KB
Số Lần Cài Đặt 19
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2017-08-09
Ngày Phát Hành 2017-08-09
Nhà Phát Triển czachbenton
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}