NowPlaying.Site Extension

Implements a client to send the current active tab to the nowplaying widget

Co je NowPlaying.Site Extension?

NowPlaying.Site Extension je rozšíření Chrome vyvinuté NowPlaying, a jeho hlavní funkcí je „Implements a client to send the current active tab to the nowplaying widget“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření NowPlaying.Site Extension

Stáhněte si soubory rozšíření NowPlaying.Site Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This extension enables the widget to display information about the currently playing song 
(for example: YouTube, SoundCloud or a twitch stream). 
This extension only works if your have an account on: https://nowplaying.site/
There is a full guide on how to use the extension in our discord: https://discord.gg/HPFnWk48RT                    

Základní Informace o Rozšíření

Název NowPlaying.Site Extension NowPlaying.Site Extension
ID jacgmbcjfkkbnpjgghihpaamminefmep
Oficiální URL https://chromewebstore.google.com/detail/nowplayingsite-extension/jacgmbcjfkkbnpjgghihpaamminefmep
Popis Implements a client to send the current active tab to the nowplaying widget
Velikost souboru 76.61 KB
Počet instalací 1,790
Aktuální Verze 1.0.1
Poslední Aktualizace 2023-11-22
Datum Vydání 2021-08-16
Hodnocení 1.00/5 Celkem 2 Hodnocení
Vývojář NowPlaying
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://nowplaying.site/
URL Stránky Nápovědy https://discord.gg/c6586qD2Mk
URL Stránky Zásad Ochrany Soukromí https://nowplaying.site/privacy-policy
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NowPlaying.Site Extension",
    "version": "1.0.1",
    "description": "Implements a client to send the current active tab to the nowplaying widget",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options\/options.html",
    "icons": {
        "16": "icon\/16.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content-scripts\/trackVideoProgress.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.soundcloud.com\/*"
            ],
            "js": [
                "content-scripts\/soundcloud.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content-scripts\/mediaSessionProxy.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "content-scripts\/mediaSessionProxy.inject.js"
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}