Toggleable Chrome Unicorns

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

Apa itu Toggleable Chrome Unicorns?

Toggleable Chrome Unicorns adalah ekstensi Chrome yang dikembangkan oleh dennistheflash, dan fitur utamanya adalah "This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Toggleable Chrome Unicorns

Unduh file ekstensi Toggleable Chrome Unicorns dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Toggleable Chrome Unicorns Toggleable Chrome Unicorns
ID fegnjfjcokdemicjjhiihkggbniknnbg
URL Resmi https://chrome.google.com/webstore/detail/fegnjfjcokdemicjjhiihkggbniknnbg
Deskripsi This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.
Ukuran File 672 KB
Jumlah Instalasi 137
Versi Saat Ini 1.0
Terakhir Diperbarui 2017-12-17
Tanggal Publikasi 2017-12-17
Penilaian 4.00/5 Total 1 Penilaian
Pengembang dennistheflash
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}