Jambofy

Improves boring youtube thumbnails by adding Jambo the cat.

Jambofy là gì?

Jambofy là một tiện ích mở rộng Chrome được phát triển bởi Puffbee21, và tính năng chính của nó là "Improves boring youtube thumbnails by adding Jambo the cat.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Jambofy

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

                        Are you bored of every YouTube thumbnail being boring? Do you wish Jambo the cat was in every YouTube thumbnail? Well now you can have exactly that with this extension. You might even run into some other cats!

Source code for extension: https://github.com/LiamHarrison25/Jambofy-Extension 

Questions or suggestions? Email [email protected]

Notes:
- This extension was inspired by YouTube MrBeastify: https://chromewebstore.google.com/detail/youtube-mrbeastify/dbmaeobgdodeimjdjnkipbfhgeldnmeb
- This extension is unofficial and not affiliated with Jschlatt or YouTube.                    

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

Tên Jambofy Jambofy
ID ecbedadooalalcgolmfgpnmphhccegei
URL Chính Thức https://chromewebstore.google.com/detail/jambofy/ecbedadooalalcgolmfgpnmphhccegei
Mô tả Improves boring youtube thumbnails by adding Jambo the cat.
Kích Thước Tệp 55.79 MB
Số Lần Cài Đặt 34,785
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2024-01-25
Ngày Phát Hành 2023-11-15
Đánh Giá 4.94/5 Tổng số 1478 Đánh Giá
Nhà Phát Triển Puffbee21
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Jambofy",
    "version": "0.1.1",
    "description": "Improves boring youtube thumbnails by adding Jambo the cat.",
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/images\/*.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "assets\/icons\/icon-16.png",
            "24": "assets\/icons\/icon-24.png",
            "32": "assets\/icons\/icon-32.png",
            "128": "assets\/icons\/icon-128.png"
        },
        "default_popup": "popup.html",
        "default_title": "Jambofyer"
    },
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "24": "assets\/icons\/icon-24.png",
        "32": "assets\/icons\/icon-32.png",
        "128": "assets\/icons\/icon-128.png"
    }
}