Pushnews

Send Push Notifications with Pushnews

Co je Pushnews?

Pushnews je rozšíření Chrome vyvinuté https://pushnews.eu, a jeho hlavní funkcí je „Send Push Notifications with Pushnews“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Pushnews

Stáhněte si soubory rozšíření Pushnews ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Pushnews Pushnews
ID ioojhhbjegkmkekbkbhagcokmcmamiff
Oficiální URL https://chromewebstore.google.com/detail/pushnews/ioojhhbjegkmkekbkbhagcokmcmamiff
Popis Send Push Notifications with Pushnews
Velikost souboru 73.02 KB
Počet instalací 64
Aktuální Verze 1.0
Poslední Aktualizace 2022-05-17
Datum Vydání 2018-11-23
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář https://pushnews.eu
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.pushnews.eu/
URL Stránky Nápovědy https://www.pushnews.eu/
URL Stránky Zásad Ochrany Soukromí https://github.com/pushnews/chrome-extension/blob/master/PRIVACYPOLICY.md
Podporované Jazyky 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
}