ScottTheWozify

Modify YouTube thumbnails to include Scott The Woz

ScottTheWozify là gì?

ScottTheWozify là một tiện ích mở rộng Chrome được phát triển bởi kawuchuu, và tính năng chính của nó là "Modify YouTube thumbnails to include Scott The Woz".

Ả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 ScottTheWozify

Tải xuống các tệp mở rộng ScottTheWozify 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

                        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.                    

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

Tên ScottTheWozify ScottTheWozify
ID acifigdfnfnafjkkapcghalnemfodmah
URL Chính Thức https://chromewebstore.google.com/detail/scottthewozify/acifigdfnfnafjkkapcghalnemfodmah
Mô tả Modify YouTube thumbnails to include Scott The Woz
Kích Thước Tệp 13.02 MB
Số Lần Cài Đặt 2,000
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2023-08-25
Ngày Phát Hành 2023-08-24
Đánh Giá 5.00/5 Tổng số 22 Đánh Giá
Nhà Phát Triển kawuchuu
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/kawuchuu/ScottTheWozify-Youtube
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}