Image Hack

replace all html elements that have no children with an image

Co to jest Image Hack?

Image Hack to rozszerzenie Chrome opracowane przez czachbenton, a jego główną funkcją jest „replace all html elements that have no children with an image”.

Pobierz plik CRX rozszerzenia Image Hack

Pobierz pliki rozszerzeń Image Hack w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Image Hack Image Hack
ID adphppnjfdnokbpaofhclnldfgmbdecf
Oficjalny URL https://chrome.google.com/webstore/detail/image-hack/adphppnjfdnokbpaofhclnldfgmbdecf
Opis replace all html elements that have no children with an image
Rozmiar pliku 6.35 KB
Liczba instalacji 19
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2017-08-09
Data Publikacji 2017-08-09
Deweloper czachbenton
Typ Płatności free
Obsługiwane Języki 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"
        ]
    }
}