Pushnews

Send Push Notifications with Pushnews

Τι είναι το Pushnews;

Το Pushnews είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://pushnews.eu, και η κύρια λειτουργία του είναι "Send Push Notifications with Pushnews".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Pushnews

Λήψη αρχείων επέκτασης Pushnews σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Pushnews Pushnews
ID ioojhhbjegkmkekbkbhagcokmcmamiff
Επίσημο URL https://chromewebstore.google.com/detail/pushnews/ioojhhbjegkmkekbkbhagcokmcmamiff
Περιγραφή Send Push Notifications with Pushnews
Μέγεθος Αρχείου 73.02 KB
Αριθμός Εγκαταστάσεων 64
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2022-05-17
Ημερομηνία Δημοσίευσης 2018-11-23
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής https://pushnews.eu
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.pushnews.eu/
Διεύθυνση URL της Σελίδας Βοήθειας https://www.pushnews.eu/
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/pushnews/chrome-extension/blob/master/PRIVACYPOLICY.md
Υποστηριζόμενες Γλώσσες 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
}