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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}