Pushnews

Send Push Notifications with Pushnews

Qu'est-ce que Pushnews ?

Pushnews est une extension Chrome développée par https://pushnews.eu, et sa fonction principale est "Send Push Notifications with Pushnews".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Pushnews

Téléchargez les fichiers d'extension Pushnews au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Pushnews Pushnews
ID ioojhhbjegkmkekbkbhagcokmcmamiff
URL Officiel https://chromewebstore.google.com/detail/pushnews/ioojhhbjegkmkekbkbhagcokmcmamiff
Description Send Push Notifications with Pushnews
Taille du Fichier 73.02 KB
Nombre d'Installations 64
Version Actuelle 1.0
Dernière Mise à Jour 2022-05-17
Date de Publication 2018-11-23
Évaluation 5.00/5 Total 2 Évaluations
Développeur https://pushnews.eu
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.pushnews.eu/
URL de la Page d'Aide https://www.pushnews.eu/
URL de la Page de Politique de Confidentialité https://github.com/pushnews/chrome-extension/blob/master/PRIVACYPOLICY.md
Langues Prises en Charge 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
}