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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/*"
            ]
        }
    ]
}