Image Hack

replace all html elements that have no children with an image

Что такое Image Hack?

Image Hack - это расширение Chrome, разработанное czachbenton, и его основная функция - "replace all html elements that have no children with an image".

Скачать файл CRX расширения Image Hack

Скачайте файлы расширений 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"
        ]
    }
}