nextcloud-news-webextension
Displays unread articles from the Nextcloud News App
Что такое nextcloud-news-webextension?
nextcloud-news-webextension - это расширение Chrome, разработанное Lukas Leist, и его основная функция - "Displays unread articles from the Nextcloud News App".
Снимки экрана расширения
Скачать файл CRX расширения nextcloud-news-webextension
Скачайте файлы расширений nextcloud-news-webextension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The extension checks for new articles in a regular interval and shows a preview. Основная информация о расширении
| Название | |
| ID | ehefnhcojbpkophibijadabacoakondh |
| Официальный URL | https://chromewebstore.google.com/detail/nextcloud-news-webextensi/ehefnhcojbpkophibijadabacoakondh |
| Описание | Displays unread articles from the Nextcloud News App |
| Размер файла | 145 KB |
| Количество установок | 38 |
| Текущая Версия | 0.5 |
| Последнее Обновление | 2023-05-08 |
| Дата публикации | 2021-04-20 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | Lukas Leist |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/lukasleist/nextcloud-news-webextension |
| Поддерживаемые языки | de,en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"description": "__MSG_extDescription__",
"options_page": "options\/options.html",
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"128": "assets\/images\/icon128.png"
},
"default_popup": "popup\/popup.html"
},
"default_locale": "en",
"icons": {
"128": "assets\/images\/icon128.png"
},
"permissions": [
"alarms",
"storage",
"unlimitedStorage",
"background"
],
"host_permissions": [
"*:\/\/*\/*"
],
"name": "nextcloud-news-webextension",
"version": "0.5"
} | |