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"
            ]
        }
    ]
}