Pushnews

Send Push Notifications with Pushnews

Wat is Pushnews?

Pushnews is een Chrome-extensie ontwikkeld door https://pushnews.eu, en de belangrijkste functie is "Send Push Notifications with Pushnews".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Pushnews

Download Pushnews-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Pushnews Pushnews
ID ioojhhbjegkmkekbkbhagcokmcmamiff
Officiële URL https://chromewebstore.google.com/detail/pushnews/ioojhhbjegkmkekbkbhagcokmcmamiff
Beschrijving Send Push Notifications with Pushnews
Bestandsgrootte 73.02 KB
Aantal Installaties 64
Huidige Versie 1.0
Laatst Bijgewerkt 2022-05-17
Publicatiedatum 2018-11-23
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar https://pushnews.eu
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.pushnews.eu/
Help Pagina-URL https://www.pushnews.eu/
URL van de Privacybeleid Pagina https://github.com/pushnews/chrome-extension/blob/master/PRIVACYPOLICY.md
Ondersteunde Talen 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
}