Toggleable Chrome Unicorns

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

Qu'est-ce que Toggleable Chrome Unicorns ?

Toggleable Chrome Unicorns est une extension Chrome développée par dennistheflash, et sa fonction principale est "This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Toggleable Chrome Unicorns

Téléchargez les fichiers d'extension Toggleable Chrome Unicorns au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Toggleable Chrome Unicorns Toggleable Chrome Unicorns
ID fegnjfjcokdemicjjhiihkggbniknnbg
URL Officiel https://chrome.google.com/webstore/detail/fegnjfjcokdemicjjhiihkggbniknnbg
Description This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.
Taille du Fichier 672 KB
Nombre d'Installations 137
Version Actuelle 1.0
Dernière Mise à Jour 2017-12-17
Date de Publication 2017-12-17
Évaluation 4.00/5 Total 1 Évaluations
Développeur dennistheflash
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}