Pushnews

Send Push Notifications with Pushnews

Cos'è Pushnews?

Pushnews è un'estensione di Chrome sviluppata da https://pushnews.eu, e la sua funzione principale è "Send Push Notifications with Pushnews".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Pushnews

Scarica i file di estensione Pushnews in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Pushnews Pushnews
ID ioojhhbjegkmkekbkbhagcokmcmamiff
URL Ufficiale https://chromewebstore.google.com/detail/pushnews/ioojhhbjegkmkekbkbhagcokmcmamiff
Descrizione Send Push Notifications with Pushnews
Dimensione del File 73.02 KB
Conteggio Installazioni 64
Versione Corrente 1.0
Ultimo Aggiornamento 2022-05-17
Data di Pubblicazione 2018-11-23
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://pushnews.eu
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.pushnews.eu/
URL della Pagina di Aiuto https://www.pushnews.eu/
URL della Pagina della Politica sulla Privacy https://github.com/pushnews/chrome-extension/blob/master/PRIVACYPOLICY.md
Lingue Supportate 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
}