Youtube Longs

Shows gameplay footage under Youtube videos.

Youtube Longs란 무엇입니까?

Youtube Longs은(는) simc.sambolec에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows gameplay footage under Youtube videos."입니다.

확장 프로그램 스크린샷

screenshot

Youtube Longs 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Do you need overstimulation? This extension adds random gameplay footage under Youtube videos that you are watching to keep you entertained!                    

확장 프로그램 기본 정보

이름 Youtube Longs Youtube Longs
ID inajamlogoahnbliabnogbcomnbiefbb
공식 URL https://chromewebstore.google.com/detail/youtube-longs/inajamlogoahnbliabnogbcomnbiefbb
설명 Shows gameplay footage under Youtube videos.
파일 크기 22.01 KB
설치 횟수 1,935
현재 버전 1.1.2
최근 업데이트 2023-03-26
출시 날짜 2023-02-23
평점 4.07/5 총 27 개의 평점
개발자 simc.sambolec
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Longs",
    "description": "Shows gameplay footage under Youtube videos.",
    "version": "1.1.2",
    "action": {
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "js": [
                "js\/functions.js",
                "js\/insertVideo.js"
            ],
            "css": [
                "css\/embeded.css"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "yt_longs.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "default_locale": "en",
    "web_accessible_resources": [
        {
            "resources": [
                "css\/width-fix.css"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ]
        }
    ]
}