Pushnews

Send Push Notifications with Pushnews

Vad är Pushnews?

Pushnews är en Chrome-tillägg utvecklad av https://pushnews.eu, och dess huvudfunktion är "Send Push Notifications with Pushnews".

Tilläggsskärmbilder

screenshot

Ladda ner Pushnews-förlängningens CRX-fil

Ladda ner Pushnews-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Pushnews Pushnews
ID ioojhhbjegkmkekbkbhagcokmcmamiff
Officiell webbadress https://chromewebstore.google.com/detail/pushnews/ioojhhbjegkmkekbkbhagcokmcmamiff
Beskrivning Send Push Notifications with Pushnews
Filstorlek 73.02 KB
Antal Installationer 64
Aktuell Version 1.0
Senast Uppdaterad 2022-05-17
Publiceringsdatum 2018-11-23
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare https://pushnews.eu
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.pushnews.eu/
Hjälpsida URL https://www.pushnews.eu/
URL till Sekretesspolicy Sidan https://github.com/pushnews/chrome-extension/blob/master/PRIVACYPOLICY.md
Stödda Språk 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
}