Pushnews

Send Push Notifications with Pushnews

Was ist Pushnews?

Pushnews ist eine Chrome-Erweiterung, die von https://pushnews.eu entwickelt wurde, und ihr Hauptmerkmal ist "Send Push Notifications with Pushnews".

Erweiterungsscreenshots

screenshot

Pushnews-Erweiterungs-CRX-Datei herunterladen

Laden Sie Pushnews-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Pushnews Pushnews
ID ioojhhbjegkmkekbkbhagcokmcmamiff
Offizielle URL https://chromewebstore.google.com/detail/pushnews/ioojhhbjegkmkekbkbhagcokmcmamiff
Beschreibung Send Push Notifications with Pushnews
Dateigröße 73.02 KB
Installationsanzahl 64
Aktuelle Version 1.0
Letztes Update 2022-05-17
Veröffentlichungsdatum 2018-11-23
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://pushnews.eu
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.pushnews.eu/
Hilfeseite URL https://www.pushnews.eu/
URL der Datenschutzrichtlinien-Seite https://github.com/pushnews/chrome-extension/blob/master/PRIVACYPOLICY.md
Unterstützte Sprachen 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
}