YouTube Extension Suite

This extesnion lists the total play time of a youtube playlist

YouTube Extension Suite là gì?

YouTube Extension Suite là một tiện ích mở rộng Chrome được phát triển bởi Ignat Remizov, và tính năng chính của nó là "This extesnion lists the total play time of a youtube playlist".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTube Extension Suite

Tải xuống các tệp mở rộng YouTube Extension Suite dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouTube Extension Suite YouTube Extension Suite
ID chkbpjapgjioieidapgjipnfodocolcn
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-extension-suite/chkbpjapgjioieidapgjipnfodocolcn
Mô tả This extesnion lists the total play time of a youtube playlist
Kích Thước Tệp 60.71 KB
Số Lần Cài Đặt 65
Phiên Bản Hiện Tại 0.2.1
Cập Nhật Lần Cuối 2016-05-05
Ngày Phát Hành 2016-05-05
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Ignat Remizov
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}