Toggleable Chrome Unicorns

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

Toggleable Chrome Unicornsとは何ですか?

Toggleable Chrome Unicornsはdennistheflashによって開発されたChromeの拡張機能で、その主な機能は「This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.」です。

拡張機能のスクリーンショット

screenshot

Toggleable Chrome Unicorns拡張機能のCRXファイルをダウンロード

Toggleable Chrome Unicorns拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Toggleable Chrome Unicorns Toggleable Chrome Unicorns
ID fegnjfjcokdemicjjhiihkggbniknnbg
公式URL https://chrome.google.com/webstore/detail/fegnjfjcokdemicjjhiihkggbniknnbg
説明 This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.
ファイルサイズ 672 KB
インストール数 137
現在のバージョン 1.0
最終更新日 2017-12-17
公開日 2017-12-17
評価 4.00/5 合計 1 レビュー
開発者 dennistheflash
支払い方法 free
対応言語 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"
            ]
        }
    ]
}