Pushnews

Send Push Notifications with Pushnews

Co to jest Pushnews?

Pushnews to rozszerzenie Chrome opracowane przez https://pushnews.eu, a jego główną funkcją jest „Send Push Notifications with Pushnews”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Pushnews

Pobierz pliki rozszerzeń Pushnews w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Pushnews Pushnews
ID ioojhhbjegkmkekbkbhagcokmcmamiff
Oficjalny URL https://chromewebstore.google.com/detail/pushnews/ioojhhbjegkmkekbkbhagcokmcmamiff
Opis Send Push Notifications with Pushnews
Rozmiar pliku 73.02 KB
Liczba instalacji 64
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2022-05-17
Data Publikacji 2018-11-23
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://pushnews.eu
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.pushnews.eu/
Adres URL Strony Pomocy https://www.pushnews.eu/
Adres URL Strony Polityki Prywatności https://github.com/pushnews/chrome-extension/blob/master/PRIVACYPOLICY.md
Obsługiwane Języki 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
}