YouTube Extension Suite

This extesnion lists the total play time of a youtube playlist

Was ist YouTube Extension Suite?

YouTube Extension Suite ist eine Chrome-Erweiterung, die von Ignat Remizov entwickelt wurde, und ihr Hauptmerkmal ist "This extesnion lists the total play time of a youtube playlist".

Erweiterungsscreenshots

screenshot
screenshot

YouTube Extension Suite-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Extension Suite-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name YouTube Extension Suite YouTube Extension Suite
ID chkbpjapgjioieidapgjipnfodocolcn
Offizielle URL https://chrome.google.com/webstore/detail/youtube-extension-suite/chkbpjapgjioieidapgjipnfodocolcn
Beschreibung This extesnion lists the total play time of a youtube playlist
Dateigröße 60.71 KB
Installationsanzahl 65
Aktuelle Version 0.2.1
Letztes Update 2016-05-05
Veröffentlichungsdatum 2016-05-05
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler Ignat Remizov
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        ]
    }
}