Pushnews

Send Push Notifications with Pushnews

Pushnews là gì?

Pushnews là một tiện ích mở rộng Chrome được phát triển bởi https://pushnews.eu, và tính năng chính của nó là "Send Push Notifications with Pushnews".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Pushnews

Tải xuống các tệp mở rộng Pushnews dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Pushnews Pushnews
ID ioojhhbjegkmkekbkbhagcokmcmamiff
URL Chính Thức https://chromewebstore.google.com/detail/pushnews/ioojhhbjegkmkekbkbhagcokmcmamiff
Mô tả Send Push Notifications with Pushnews
Kích Thước Tệp 73.02 KB
Số Lần Cài Đặt 64
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2022-05-17
Ngày Phát Hành 2018-11-23
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://pushnews.eu
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.pushnews.eu/
URL Trang Trợ Giúp https://www.pushnews.eu/
URL Trang Chính Sách Bảo Mật https://github.com/pushnews/chrome-extension/blob/master/PRIVACYPOLICY.md
Ngôn Ngữ Được Hỗ Trợ 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
}