Toggleable Chrome Unicorns

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

Was ist Toggleable Chrome Unicorns?

Toggleable Chrome Unicorns ist eine Chrome-Erweiterung, die von dennistheflash entwickelt wurde, und ihr Hauptmerkmal ist "This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.".

Erweiterungsscreenshots

screenshot

Toggleable Chrome Unicorns-Erweiterungs-CRX-Datei herunterladen

Laden Sie Toggleable Chrome Unicorns-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Toggleable Chrome Unicorns Toggleable Chrome Unicorns
ID fegnjfjcokdemicjjhiihkggbniknnbg
Offizielle URL https://chrome.google.com/webstore/detail/fegnjfjcokdemicjjhiihkggbniknnbg
Beschreibung This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.
Dateigröße 672 KB
Installationsanzahl 137
Aktuelle Version 1.0
Letztes Update 2017-12-17
Veröffentlichungsdatum 2017-12-17
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler dennistheflash
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}