Pushnews

Send Push Notifications with Pushnews

Pushnewsคืออะไร?

Pushnews เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://pushnews.eu และคุณลักษณะหลักของมันคือ "Send Push Notifications with Pushnews"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pushnews

ดาวน์โหลดไฟล์ส่วนขยาย 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
}