Toggleable Chrome Unicorns

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

What is Toggleable Chrome Unicorns?

Toggleable Chrome Unicorns is a Chrome extension developed by dennistheflash, and its main feature is "This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.".

Extension Screenshots

screenshot

Download Toggleable Chrome Unicorns Extension CRX File

Download Toggleable Chrome Unicorns extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Toggleable Chrome Unicorns Toggleable Chrome Unicorns
ID fegnjfjcokdemicjjhiihkggbniknnbg
Official URL 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.
File Size 672 KB
Installation Count 137
Current Version 1.0
Last Updated 2017-12-17
Publish Date 2017-12-17
Rating 4.00/5 Total 1 Ratings
Developer dennistheflash
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}