YouTube Playlist
This extension transforms a youtube page that contains a video with multiple songs into a playlist
Что такое YouTube Playlist?
YouTube Playlist - это расширение Chrome, разработанное Ivan Chub, и его основная функция - "This extension transforms a youtube page that contains a video with multiple songs into a playlist".
Снимки экрана расширения
Скачать файл CRX расширения YouTube Playlist
Скачайте файлы расширений YouTube Playlist в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
If you would like to contribute, go here: https://github.com/ichub/youtube-playlist
Основная информация о расширении
Название | |
ID | fpekldclcjpekfidkgfbgpffhbholbnd |
Официальный URL | https://chrome.google.com/webstore/detail/youtube-playlist/fpekldclcjpekfidkgfbgpffhbholbnd |
Описание | This extension transforms a youtube page that contains a video with multiple songs into a playlist |
Размер файла | 34.28 KB |
Количество установок | 237 |
Текущая Версия | 1.0 |
Последнее Обновление | 2015-08-04 |
Дата публикации | 2015-08-04 |
Рейтинг | 3.25/5 Всего 4 оценок |
Разработчик | Ivan Chub |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Playlist", "description": "This extension transforms a youtube page that contains a video with multiple songs into a playlist", "version": "1.0", "permissions": [ "activeTab", "tabs", "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "injected.css" ], "js": [ "jquery.min.js", "injected.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "injected.html" ] } |