Pushnews

Send Push Notifications with Pushnews

What is Pushnews?

Pushnews is a Chrome extension developed by https://pushnews.eu, and its main feature is "Send Push Notifications with Pushnews".

Extension Screenshots

screenshot

Download Pushnews Extension CRX File

Download Pushnews extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Pushnews Pushnews
ID ioojhhbjegkmkekbkbhagcokmcmamiff
Official URL https://chromewebstore.google.com/detail/pushnews/ioojhhbjegkmkekbkbhagcokmcmamiff
Description Send Push Notifications with Pushnews
File Size 73.02 KB
Installation Count 64
Current Version 1.0
Last Updated 2022-05-17
Publish Date 2018-11-23
Rating 5.00/5 Total 2 Ratings
Developer https://pushnews.eu
Email [email protected]
Payment Type free
Extension Website https://www.pushnews.eu/
Help Page URL https://www.pushnews.eu/
Privacy Policy Page URL https://github.com/pushnews/chrome-extension/blob/master/PRIVACYPOLICY.md
Supported Languages 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
}