YouTube++

This extension shows the publishing or uploading date of related youtube videos in sidebar.

YouTube++란 무엇입니까?

YouTube++은(는) divyum에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension shows the publishing or uploading date of related youtube videos in sidebar."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

YouTube++ 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Ever wondered if you could get the published date of related videos without even opening the videos in youtube, here is an extension which will solve this for you.                    

확장 프로그램 기본 정보

이름 YouTube++ YouTube++
ID mbaflkdlneldejanggphlhcepncjfaco
공식 URL https://chromewebstore.google.com/detail/youtube++/mbaflkdlneldejanggphlhcepncjfaco
설명 This extension shows the publishing or uploading date of related youtube videos in sidebar.
파일 크기 229 KB
설치 횟수 2,716
현재 버전 2.3.2
최근 업데이트 2019-11-12
출시 날짜 2019-11-11
평점 3.77/5 총 52 개의 평점
개발자 divyum
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube++",
    "short_name": "YTD",
    "description": "This extension shows the publishing or uploading date of related youtube videos in sidebar.",
    "version": "2.3.2",
    "icons": {
        "48": "image\/icon48.png",
        "128": "image\/icon128.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "http:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "image\/loader_gif.gif"
    ]
}