NowPlaying.Site Extension

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

Hvad er NowPlaying.Site Extension?

NowPlaying.Site Extension er en Chrome-udvidelse udviklet af NowPlaying, og dens hovedfunktion er "Implements a client to send the current active tab to the nowplaying widget".

Udvidelsesskærmbilleder

screenshot

Download NowPlaying.Site Extension-udvidelses-CRX-fil

Download NowPlaying.Site Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn NowPlaying.Site Extension NowPlaying.Site Extension
ID jacgmbcjfkkbnpjgghihpaamminefmep
Officiel URL https://chromewebstore.google.com/detail/nowplayingsite-extension/jacgmbcjfkkbnpjgghihpaamminefmep
Beskrivelse Implements a client to send the current active tab to the nowplaying widget
Filstørrelse 76.61 KB
Antal Installationer 1,790
Nuværende Version 1.0.1
Senest Opdateret 2023-11-22
Udgivelsesdato 2021-08-16
Bedømmelse 1.00/5 Samlet 2 Bedømmelser
Udvikler NowPlaying
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://nowplaying.site/
Hjælpeside-URL https://discord.gg/c6586qD2Mk
URL til Fortrolighedspolitik Side https://nowplaying.site/privacy-policy
Understøttede Sprog 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"
    ]
}