Pushnews

Send Push Notifications with Pushnews

¿Qué es Pushnews?

Pushnews es una extensión de Chrome desarrollada por https://pushnews.eu, y su función principal es "Send Push Notifications with Pushnews".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Pushnews

Descarga archivos de extensión Pushnews en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Pushnews Pushnews
ID ioojhhbjegkmkekbkbhagcokmcmamiff
URL Oficial https://chromewebstore.google.com/detail/pushnews/ioojhhbjegkmkekbkbhagcokmcmamiff
Descripción Send Push Notifications with Pushnews
Tamaño del Archivo 73.02 KB
Cantidad de Instalaciones 64
Versión Actual 1.0
Última Actualización 2022-05-17
Fecha de Publicación 2018-11-23
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador https://pushnews.eu
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.pushnews.eu/
URL de la Página de Ayuda https://www.pushnews.eu/
URL de la Página de Política de Privacidad https://github.com/pushnews/chrome-extension/blob/master/PRIVACYPOLICY.md
Idiomas Soportados 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
}