Chrome Playlist
Make a playlist of youtube videos based on a bookmark folder.
Что такое Chrome Playlist?
Chrome Playlist - это расширение Chrome, разработанное Bryan Chen, и его основная функция - "Make a playlist of youtube videos based on a bookmark folder.".
Снимки экрана расширения
Скачать файл CRX расширения Chrome Playlist
Скачайте файлы расширений Chrome Playlist в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Select a bookmark folder containing lots of youtube links through the pop-up interface and then click play! A new tab will open that automatically cycles through the bookmarked videos in the folder as they end, acting as a custom playlist through youtube. You can use the popup to skip to a new randomly selected song as well. Основная информация о расширении
| Название | |
| ID | dnodaodnfnledpfmlflemmimlpebigbc |
| Официальный URL | https://chromewebstore.google.com/detail/chrome-playlist/dnodaodnfnledpfmlflemmimlpebigbc |
| Описание | Make a playlist of youtube videos based on a bookmark folder. |
| Размер файла | 41.46 KB |
| Количество установок | 91 |
| Текущая Версия | 1.0.3 |
| Последнее Обновление | 2019-04-26 |
| Дата публикации | 2019-04-26 |
| Разработчик | Bryan Chen |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"version": "1.0.3",
"name": "Chrome Playlist",
"description": "Make a playlist of youtube videos based on a bookmark folder.",
"icons": {
"16": "images\/note16.png",
"48": "images\/note48.png",
"128": "images\/note128.png"
},
"browser_action": {
"default_icon": "images\/note128.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"permissions": [
"storage",
"tabs",
"bookmarks",
"https:\/\/www.youtube.com\/*"
]
} | |