ScottTheWozify

Modify YouTube thumbnails to include Scott The Woz

ما هو ScottTheWozify؟

ScottTheWozify هو إضافة Chrome تم تطويرها بواسطة kawuchuu، والميزة الرئيسية لها هي "Modify YouTube thumbnails to include Scott The Woz".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة ScottTheWozify

قم بتنزيل ملفات الامتداد ScottTheWozify بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Is your browser experience boring? Do you need to resist playing Donkey Kong: Barrel Blast?

Fear no more.

This extension adds the guy who owns Sonic Jam Scott The Woz to every YouTube thumbnail.                    

معلومات أساسية عن التمديد

الاسم ScottTheWozify ScottTheWozify
ID acifigdfnfnafjkkapcghalnemfodmah
عنوان URL الرسمي https://chromewebstore.google.com/detail/scottthewozify/acifigdfnfnafjkkapcghalnemfodmah
الوصف Modify YouTube thumbnails to include Scott The Woz
حجم الملف 13.02 MB
عدد التثبيتات 2,000
النسخة الحالية 1.5
آخر تحديث 2023-08-25
تاريخ النشر 2023-08-24
تقييم 5.00/5 مجموع تقييمات 22
المطور kawuchuu
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/kawuchuu/ScottTheWozify-Youtube
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ScottTheWozify",
    "version": "1.5",
    "action": {
        "default_icon": {
            "16": "icons\/icon-16.png",
            "32": "icons\/icon-32.png"
        },
        "default_popup": "options\/options.html",
        "default_title": "ScottTheWozify Options"
    },
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png",
        "96": "icons\/icon-96.png"
    },
    "description": "Modify YouTube thumbnails to include Scott The Woz",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "scottthewozify.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*.png",
                "images\/*.json"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}