Pushnews

Send Push Notifications with Pushnews

什么是Pushnews?

Pushnews是由https://pushnews.eu开发的Chrome扩展程序,该扩展的主要功能是“Send Push Notifications with Pushnews”。

扩展截图

screenshot

下载Pushnews扩展crx文件

下载Pushnews扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Pushnews Pushnews
ID ioojhhbjegkmkekbkbhagcokmcmamiff
官方URL https://chromewebstore.google.com/detail/pushnews/ioojhhbjegkmkekbkbhagcokmcmamiff
简介 Send Push Notifications with Pushnews
文件大小 73.02 KB
安装次数 64
当前版本 1.0
更新时间 2022-05-17
上架时间 2018-11-23
评分 5.00/5 共2次评分
开发者 https://pushnews.eu
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.pushnews.eu/
帮助页面URL https://www.pushnews.eu/
隐私政策页面URL https://github.com/pushnews/chrome-extension/blob/master/PRIVACYPOLICY.md
支持的语言 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
}