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文件

下载YouTube Extension Suite扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
        ]
    }
}