Jambofy

Improves boring youtube thumbnails by adding Jambo the cat.

什麼是Jambofy?

Jambofy是由Puffbee21開發的Chrome擴展程式,該擴展的主要功能是“Improves boring youtube thumbnails by adding Jambo the cat.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Jambofy擴展crx文件

下載Jambofy擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Jambofy Jambofy
ID ecbedadooalalcgolmfgpnmphhccegei
官方網址 https://chromewebstore.google.com/detail/jambofy/ecbedadooalalcgolmfgpnmphhccegei
簡介 Improves boring youtube thumbnails by adding Jambo the cat.
檔案大小 55.79 MB
安裝次數 34,785
目前版本 0.1.1
更新時間 2024-01-25
上架時間 2023-11-15
評分 4.94/5 共 1478 次評分
開發者 Puffbee21
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    }
}