Pushnews

Send Push Notifications with Pushnews

ما هو Pushnews؟

Pushnews هو إضافة Chrome تم تطويرها بواسطة https://pushnews.eu، والميزة الرئيسية لها هي "Send Push Notifications with Pushnews".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Pushnews

قم بتنزيل ملفات الامتداد Pushnews بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة المساعدة https://www.pushnews.eu/
عنوان صفحة سياسة الخصوصية 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
}