Notification Muter

This extension will mute notifications

ما هو Notification Muter؟

Notification Muter هو إضافة Chrome تم تطويرها بواسطة mfreedman، والميزة الرئيسية لها هي "This extension will mute notifications".

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

screenshot

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

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

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

                        This will block notifications and popups for all urls.

It will also temporarily remove javascript alerts for calendar.google.com

When unmuted will stop this extension from managing your notifications & popups.                    

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

الاسم Notification Muter Notification Muter
ID nadnegkhgmdkedmcmobengbmacbngpma
عنوان URL الرسمي https://chromewebstore.google.com/detail/notification-muter/nadnegkhgmdkedmcmobengbmacbngpma
الوصف This extension will mute notifications
حجم الملف 27.62 KB
عدد التثبيتات 176
النسخة الحالية 0.0.3.18
آخر تحديث 2017-06-07
تاريخ النشر 2017-06-07
تقييم 3.50/5 مجموع تقييمات 2
المطور mfreedman
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/mikfreedman/notification-muter
عنوان صفحة المساعدة https://github.com/mikfreedman/notification-muter/blob/master/README.md
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "notification-muter",
    "name": "Notification Muter",
    "version": "0.0.3.18",
    "manifest_version": 2,
    "description": "This extension will mute notifications",
    "homepage_url": "http:\/\/github.com\/mikfreedman\/notification-muter",
    "icons": {
        "16": "icons\/bell.png",
        "48": "icons\/bell.png",
        "128": "icons\/bell.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/notificationMuter.js",
            "src\/popupMuter.js",
            "src\/alertMuter.js",
            "src\/clickListener.js",
            "src\/iconListener.js",
            "src\/reinjectListener.js",
            "src\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/bell.png",
        "default_title": "mute\/unmute notifications"
    },
    "permissions": [
        "https:\/\/calendar.google.com\/*",
        "http:\/\/calendar.google.com\/*",
        "contentSettings",
        "storage"
    ],
    "web_accessible_resources": [
        "icons\/no-bell.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*",
                "http:\/\/calendar.google.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}