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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dennistheflash และคุณลักษณะหลักของมันคือ "This extension replaces all images with unicorns. It is a great prank. You can toggle this on and off."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Toggleable Chrome Unicorns

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}