Notification Muter

This extension will mute notifications

Vad är Notification Muter?

Notification Muter är en Chrome-tillägg utvecklad av mfreedman, och dess huvudfunktion är "This extension will mute notifications".

Tilläggsskärmbilder

screenshot

Ladda ner Notification Muter-förlängningens CRX-fil

Ladda ner Notification Muter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Notification Muter Notification Muter
ID nadnegkhgmdkedmcmobengbmacbngpma
Officiell webbadress https://chromewebstore.google.com/detail/notification-muter/nadnegkhgmdkedmcmobengbmacbngpma
Beskrivning This extension will mute notifications
Filstorlek 27.62 KB
Antal Installationer 176
Aktuell Version 0.0.3.18
Senast Uppdaterad 2017-06-07
Publiceringsdatum 2017-06-07
Betyg 3.50/5 Totalt 2 Betyg
Utvecklare mfreedman
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/mikfreedman/notification-muter
Hjälpsida URL https://github.com/mikfreedman/notification-muter/blob/master/README.md
Stödda Språk 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"
            ]
        }
    ]
}