YouTube Extension Suite

This extesnion lists the total play time of a youtube playlist

YouTube Extension Suite란 무엇입니까?

YouTube Extension Suite은(는) Ignat Remizov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extesnion lists the total play time of a youtube playlist"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This extension is still in heavy development!
Right now the only feature is that it shows the length of time it would take to watch a playlist.

I have a lot planned, so stay tuned for more features coming soon!                    

확장 프로그램 기본 정보

이름 YouTube Extension Suite YouTube Extension Suite
ID chkbpjapgjioieidapgjipnfodocolcn
공식 URL https://chrome.google.com/webstore/detail/youtube-extension-suite/chkbpjapgjioieidapgjipnfodocolcn
설명 This extesnion lists the total play time of a youtube playlist
파일 크기 60.71 KB
설치 횟수 65
현재 버전 0.2.1
최근 업데이트 2016-05-05
출시 날짜 2016-05-05
평점 3.00/5 총 2 개의 평점
개발자 Ignat Remizov
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Ignat Remizov",
    "manifest_version": 2,
    "name": "YouTube Extension Suite",
    "short_name": "YES!",
    "version": "0.2.1",
    "description": "This extesnion lists the total play time of a youtube playlist",
    "icons": {
        "16": "images\/Icon16.png",
        "48": "images\/Icon48.png",
        "128": "images\/Icon128.png"
    },
    "permissions": [
        "identity",
        "storage",
        "*:\/\/*.youtube.com\/watch*list*",
        "*:\/\/*.youtube.com\/playlist*"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/watch*list*",
                "*:\/\/*.youtube.com\/playlist*"
            ],
            "js": [
                "js\/vendor\/moment.js",
                "js\/vendor\/moment-duration-format.js",
                "js\/helpers.js",
                "js\/duration_helpers.js",
                "js\/dom_helpers.js",
                "js\/main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "keys.json",
        "pageTokens.json",
        "js\/*.js"
    ],
    "oauth2": {
        "client_id": "940024462417-5ais2trpuo7htdvonu4ulsmoia54fnsc.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/youtube.readonly"
        ]
    }
}