YouTube Extension Suite
This extesnion lists the total play time of a youtube playlist
Что такое YouTube Extension Suite?
YouTube Extension Suite - это расширение Chrome, разработанное Ignat Remizov, и его основная функция - "This extesnion lists the total play time of a youtube playlist".
Снимки экрана расширения
Скачать файл CRX расширения YouTube Extension Suite
Скачайте файлы расширений 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 |
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" ] } } |