Pushnews

Send Push Notifications with Pushnews

Apa itu Pushnews?

Pushnews adalah ekstensi Chrome yang dikembangkan oleh https://pushnews.eu, dan fitur utamanya adalah "Send Push Notifications with Pushnews".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Pushnews

Unduh file ekstensi Pushnews dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Pushnews Pushnews
ID ioojhhbjegkmkekbkbhagcokmcmamiff
URL Resmi https://chromewebstore.google.com/detail/pushnews/ioojhhbjegkmkekbkbhagcokmcmamiff
Deskripsi Send Push Notifications with Pushnews
Ukuran File 73.02 KB
Jumlah Instalasi 64
Versi Saat Ini 1.0
Terakhir Diperbarui 2022-05-17
Tanggal Publikasi 2018-11-23
Penilaian 5.00/5 Total 2 Penilaian
Pengembang https://pushnews.eu
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://www.pushnews.eu/
URL Halaman Bantuan https://www.pushnews.eu/
URL Halaman Kebijakan Privasi https://github.com/pushnews/chrome-extension/blob/master/PRIVACYPOLICY.md
Bahasa yang Didukung 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
}