Pushnews

Send Push Notifications with Pushnews

Hvad er Pushnews?

Pushnews er en Chrome-udvidelse udviklet af https://pushnews.eu, og dens hovedfunktion er "Send Push Notifications with Pushnews".

Udvidelsesskærmbilleder

screenshot

Download Pushnews-udvidelses-CRX-fil

Download Pushnews-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Pushnews Pushnews
ID ioojhhbjegkmkekbkbhagcokmcmamiff
Officiel URL https://chromewebstore.google.com/detail/pushnews/ioojhhbjegkmkekbkbhagcokmcmamiff
Beskrivelse Send Push Notifications with Pushnews
Filstørrelse 73.02 KB
Antal Installationer 64
Nuværende Version 1.0
Senest Opdateret 2022-05-17
Udgivelsesdato 2018-11-23
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler https://pushnews.eu
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.pushnews.eu/
Hjælpeside-URL https://www.pushnews.eu/
URL til Fortrolighedspolitik Side https://github.com/pushnews/chrome-extension/blob/master/PRIVACYPOLICY.md
Understøttede Sprog 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
}