Toggleable Chrome Unicorns

This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.

Co to jest Toggleable Chrome Unicorns?

Toggleable Chrome Unicorns to rozszerzenie Chrome opracowane przez dennistheflash, a jego główną funkcją jest „This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Toggleable Chrome Unicorns

Pobierz pliki rozszerzeń Toggleable Chrome Unicorns 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

                        This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.                    

Podstawowe informacje o rozszerzeniu

Nazwa Toggleable Chrome Unicorns Toggleable Chrome Unicorns
ID fegnjfjcokdemicjjhiihkggbniknnbg
Oficjalny URL https://chrome.google.com/webstore/detail/fegnjfjcokdemicjjhiihkggbniknnbg
Opis This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.
Rozmiar pliku 672 KB
Liczba instalacji 137
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2017-12-17
Data Publikacji 2017-12-17
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper dennistheflash
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": "Toggleable Chrome Unicorns",
    "version": "1.0",
    "web_accessible_resources": [
        "unicorns\/*.jpg"
    ],
    "background": {
        "scripts": [
            "unicorn.js"
        ]
    },
    "icons": {
        "16": "ic16.png",
        "48": "ic48.png",
        "128": "ic128.png"
    },
    "browser_action": {
        "default_icon": "ic128.png",
        "default_popup": "popup.html",
        "default_title": "Chrome Unicorns"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "unicorn.js"
            ]
        }
    ]
}