Reddit Alternative Video Player
An alternative video player for Reddit
Что такое Reddit Alternative Video Player?
Reddit Alternative Video Player - это расширение Chrome, разработанное Petro Cardoso, и его основная функция - "An alternative video player for Reddit".
Снимки экрана расширения
Скачать файл CRX расширения Reddit Alternative Video Player
Скачайте файлы расширений Reddit Alternative Video Player в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
An alternative video player for Reddit, select the default quality of the video player and enjoy! Основная информация о расширении
| Название | |
| ID | lmjhpokfoiodjhhlghfngaccjgicjjaf |
| Официальный URL | https://chromewebstore.google.com/detail/reddit-alternative-video/lmjhpokfoiodjhhlghfngaccjgicjjaf |
| Описание | An alternative video player for Reddit |
| Размер файла | 158 KB |
| Количество установок | 220 |
| Текущая Версия | 1.0.2 |
| Последнее Обновление | 2023-01-11 |
| Дата публикации | 2023-01-11 |
| Рейтинг | 5.00/5 Всего 6 оценок |
| Разработчик | Petro Cardoso |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Reddit Alternative Video Player",
"description": "An alternative video player for Reddit",
"version": "1.0.2",
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.reddit.com\/*"
],
"js": [
"js\/vendor.js",
"js\/content_script.js"
]
}
],
"background": {
"service_worker": "js\/background.js"
},
"permissions": [
"storage"
]
} | |