Saavn Notifications

Notifications! See what's playing without the struggle of opening the tab.

Was ist Saavn Notifications?

Saavn Notifications ist eine Chrome-Erweiterung, die von Campus Folder entwickelt wurde, und ihr Hauptmerkmal ist "Notifications! See what's playing without the struggle of opening the tab.".

Erweiterungsscreenshots

screenshot
screenshot

Saavn Notifications-Erweiterungs-CRX-Datei herunterladen

Laden Sie Saavn Notifications-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        # Fixed a notification bug

Don't waste time opening the Saavn tab to see which song is being played. This extension displays a notification of the current song being played. 

This app doesn't collect any data.                    

Grundlegende Informationen zur Erweiterung

Name Saavn Notifications Saavn Notifications
ID ebkmpooehgcmpkbjgappmodejcjdfnlp
Offizielle URL https://chrome.google.com/webstore/detail/saavn-notifications/ebkmpooehgcmpkbjgappmodejcjdfnlp
Beschreibung Notifications! See what's playing without the struggle of opening the tab.
Dateigröße 29.27 KB
Installationsanzahl 159
Aktuelle Version 1.0.2
Letztes Update 2016-08-20
Veröffentlichungsdatum 2016-08-20
Bewertung 4.23/5 Insgesamt 13 Bewertungen
Entwickler Campus Folder
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Saavn Notifications",
    "description": "Notifications! See what's playing without the struggle of opening the tab.",
    "manifest_version": 2,
    "version": "1.0.2",
    "permissions": [
        "notifications",
        "activeTab",
        "tabs",
        "http:\/\/www.saavn.com\/*",
        "https:\/\/www.saavn.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "saavn.min.js"
            ],
            "matches": [
                "http:\/\/www.saavn.com\/*",
                "https:\/\/www.saavn.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_title": "Saavn Notifications"
    }
}