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
官方網址 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
}