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
Eメール [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
}