YouTube Extension Suite
This extesnion lists the total play time of a youtube playlist
Co to jest YouTube Extension Suite?
YouTube Extension Suite to rozszerzenie Chrome opracowane przez Ignat Remizov, a jego główną funkcją jest „This extesnion lists the total play time of a youtube playlist”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia YouTube Extension Suite
Pobierz pliki rozszerzeń YouTube Extension Suite w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | YouTube Extension Suite |
ID | chkbpjapgjioieidapgjipnfodocolcn |
Oficjalny URL | https://chrome.google.com/webstore/detail/youtube-extension-suite/chkbpjapgjioieidapgjipnfodocolcn |
Opis | This extesnion lists the total play time of a youtube playlist |
Rozmiar pliku | 60.71 KB |
Liczba instalacji | 65 |
Aktualna Wersja | 0.2.1 |
Ostatnia Aktualizacja | 2016-05-05 |
Data Publikacji | 2016-05-05 |
Ocena | 3.00/5 Łącznie 2 Oceny |
Deweloper | Ignat Remizov |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } } |