Plex Download Extension
Extension to download file from Plex Server ('Allow Donwloads' restriction need to be enabled for current Plex user)
Что такое Plex Download Extension?
Plex Download Extension - это расширение Chrome, разработанное Raymice, и его основная функция - "Extension to download file from Plex Server ('Allow Donwloads' restriction need to be enabled for current Plex user)".
Снимки экрана расширения
Скачать файл CRX расширения Plex Download Extension
Скачайте файлы расширений Plex Download Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Extension to download file from Plex Server
Only one click needed !
Features:
* Download a Movie
* Download all Episodes of a Season
* Download an Episode of a Season
Requirements: 'Allow Donwloads' restriction need to be enabled for current Plex user Основная информация о расширении
| Название | |
| ID | dineoginfckbbcgkbbahamjgdambpocn |
| Официальный URL | https://chromewebstore.google.com/detail/plex-download-extension/dineoginfckbbcgkbbahamjgdambpocn |
| Описание | Extension to download file from Plex Server ('Allow Donwloads' restriction need to be enabled for current Plex user) |
| Размер файла | 34.53 KB |
| Количество установок | 113 |
| Текущая Версия | 0.5.0 |
| Последнее Обновление | 2024-02-25 |
| Дата публикации | 2023-11-30 |
| Рейтинг | 5.00/5 Всего 2 оценок |
| Разработчик | Raymice |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en,fr |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"author": {
"email": "[email protected]"
},
"description": "__MSG_description__",
"name": "__MSG_name__",
"version": "0.5.0",
"manifest_version": 3,
"default_locale": "en",
"action": {
"default_title": "__MSG_defaulttitle__",
"default_icon": {
"16": "images\/enabled\/icon16.png",
"24": "images\/enabled\/icon24.png",
"32": "images\/enabled\/icon32.png",
"48": "images\/enabled\/icon48.png",
"128": "images\/enabled\/icon128.png"
}
},
"background": {
"service_worker": "serviceWorker.js",
"type": "module"
},
"host_permissions": [
"https:\/\/app.plex.tv\/*"
],
"icons": {
"16": "images\/enabled\/icon16.png",
"24": "images\/enabled\/icon24.png",
"32": "images\/enabled\/icon32.png",
"48": "images\/enabled\/icon48.png",
"128": "images\/enabled\/icon128.png"
},
"permissions": [
"scripting",
"activeTab",
"tabs",
"downloads"
],
"content_scripts": [
{
"js": [
"src\/contentScript.js",
"src\/popup\/popup.js"
],
"matches": [
"*:\/\/*\/*"
]
}
]
} | |