YouTube Watch without Playlist
This extension allows videos from playlists to be watched without the playlist view.
Что такое YouTube Watch without Playlist?
YouTube Watch without Playlist - это расширение Chrome, разработанное Joel Henke, и его основная функция - "This extension allows videos from playlists to be watched without the playlist view.".
Снимки экрана расширения
Скачать файл CRX расширения YouTube Watch without Playlist
Скачайте файлы расширений YouTube Watch without Playlist в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Основная информация о расширении
Название | |
ID | hemfmfgfgaohilndfehheengjlgmkhlo |
Официальный URL | https://chrome.google.com/webstore/detail/youtube-watch-without-pla/hemfmfgfgaohilndfehheengjlgmkhlo |
Описание | This extension allows videos from playlists to be watched without the playlist view. |
Размер файла | 438 KB |
Количество установок | 153 |
Текущая Версия | 1.2 |
Последнее Обновление | 2020-02-16 |
Дата публикации | 2020-02-16 |
Рейтинг | 4.63/5 Всего 8 оценок |
Разработчик | Joel Henke |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Watch without Playlist", "version": "1.2", "description": "This extension allows videos from playlists to be watched without the playlist view.", "author": "Joel Henke", "permissions": [ "*:\/\/*.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "addbuttons.js", "content.js" ] } ], "web_accessible_resources": [ "addbuttons.js", "xhrmonitor.js" ], "icons": { "48": "icon48.png", "128": "icon128.png" } } |