WhatsApp Notification Changer

A simple extension that allows the user to change the notification sound of web.whatsapp.com.

ما هو WhatsApp Notification Changer؟

WhatsApp Notification Changer هو إضافة Chrome تم تطويرها بواسطة rafael.galani، والميزة الرئيسية لها هي "A simple extension that allows the user to change the notification sound of web.whatsapp.com.".

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

screenshot

تحميل ملف CRX للإضافة WhatsApp Notification Changer

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

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

                        A simple extension that allows the user to change the notification sound of web.whatsapp.com.                    

معلومات أساسية عن التمديد

الاسم WhatsApp Notification Changer WhatsApp Notification Changer
ID jnlilnljmhioncbmofmdlphmagmegkde
عنوان URL الرسمي https://chrome.google.com/webstore/detail/whatsapp-notification-cha/jnlilnljmhioncbmofmdlphmagmegkde
الوصف A simple extension that allows the user to change the notification sound of web.whatsapp.com.
حجم الملف 83.43 KB
عدد التثبيتات 460
النسخة الحالية 1.0
آخر تحديث 2020-07-30
تاريخ النشر 2020-07-30
تقييم 4.00/5 مجموع تقييمات 6
المطور rafael.galani
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WhatsApp Notification Changer",
    "version": "1.0",
    "description": "A simple extension that allows the user to change the notification sound of web.whatsapp.com.",
    "permissions": [
        "unlimitedStorage",
        "declarativeContent",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/web.whatsapp.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "matches": [
                "*:\/\/web.whatsapp.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "modifier.js"
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "manifest_version": 2
}