Notification Muter

This extension will mute notifications

Notification Muter क्या है?

Notification Muter mfreedman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will mute notifications"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Notification Muter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ URL 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"
            ]
        }
    ]
}