Saavn Notifications

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

Vad är Saavn Notifications?

Saavn Notifications är en Chrome-tillägg utvecklad av Campus Folder, och dess huvudfunktion är "Notifications! See what's playing without the struggle of opening the tab.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Saavn Notifications-förlängningens CRX-fil

Ladda ner Saavn Notifications-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

                        # 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.                    

Grundläggande Information om Tillägg

Namn Saavn Notifications Saavn Notifications
ID ebkmpooehgcmpkbjgappmodejcjdfnlp
Officiell webbadress https://chrome.google.com/webstore/detail/saavn-notifications/ebkmpooehgcmpkbjgappmodejcjdfnlp
Beskrivning Notifications! See what's playing without the struggle of opening the tab.
Filstorlek 29.27 KB
Antal Installationer 159
Aktuell Version 1.0.2
Senast Uppdaterad 2016-08-20
Publiceringsdatum 2016-08-20
Betyg 4.23/5 Totalt 13 Betyg
Utvecklare Campus Folder
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}