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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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