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 là gì?

Toggleable Chrome Unicorns là một tiện ích mở rộng Chrome được phát triển bởi dennistheflash, và tính năng chính của nó là "This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Toggleable Chrome Unicorns

Tải xuống các tệp mở rộng Toggleable Chrome Unicorns dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Toggleable Chrome Unicorns Toggleable Chrome Unicorns
ID fegnjfjcokdemicjjhiihkggbniknnbg
URL Chính Thức https://chrome.google.com/webstore/detail/fegnjfjcokdemicjjhiihkggbniknnbg
Mô tả This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off.
Kích Thước Tệp 672 KB
Số Lần Cài Đặt 137
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2017-12-17
Ngày Phát Hành 2017-12-17
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển dennistheflash
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}