Pushnews

Send Push Notifications with Pushnews

Что такое Pushnews?

Pushnews - это расширение Chrome, разработанное https://pushnews.eu, и его основная функция - "Send Push Notifications with Pushnews".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Pushnews

Скачайте файлы расширений Pushnews в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        The Pushnews Chrome Extension allows you to quickly create a Push Notification by sending active tab's URL to Pushnews.

Pushnews will try to retrieve title, description and image from the URL and pre-build a Push Notification                    

Основная информация о расширении

Название Pushnews Pushnews
ID ioojhhbjegkmkekbkbhagcokmcmamiff
Официальный URL https://chromewebstore.google.com/detail/pushnews/ioojhhbjegkmkekbkbhagcokmcmamiff
Описание Send Push Notifications with Pushnews
Размер файла 73.02 KB
Количество установок 64
Текущая Версия 1.0
Последнее Обновление 2022-05-17
Дата публикации 2018-11-23
Рейтинг 5.00/5 Всего 2 оценок
Разработчик https://pushnews.eu
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.pushnews.eu/
URL страницы помощи https://www.pushnews.eu/
URL страницы политики конфиденциальности https://github.com/pushnews/chrome-extension/blob/master/PRIVACYPOLICY.md
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pushnews",
    "version": "1.0",
    "description": "Send Push Notifications with Pushnews",
    "permissions": [
        "tabs",
        "scripting",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "96": "images\/icon-96.png",
            "128": "images\/icon-128.png"
        }
    },
    "options_page": "options.html",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "96": "images\/icon-96.png",
        "128": "images\/icon-128.png"
    },
    "manifest_version": 3
}