NowPlaying.Site Extension

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

Was ist NowPlaying.Site Extension?

NowPlaying.Site Extension ist eine Chrome-Erweiterung, die von NowPlaying entwickelt wurde, und ihr Hauptmerkmal ist "Implements a client to send the current active tab to the nowplaying widget".

Erweiterungsscreenshots

screenshot

NowPlaying.Site Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie NowPlaying.Site Extension-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

                        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                    

Grundlegende Informationen zur Erweiterung

Name NowPlaying.Site Extension NowPlaying.Site Extension
ID jacgmbcjfkkbnpjgghihpaamminefmep
Offizielle URL https://chromewebstore.google.com/detail/nowplayingsite-extension/jacgmbcjfkkbnpjgghihpaamminefmep
Beschreibung Implements a client to send the current active tab to the nowplaying widget
Dateigröße 76.61 KB
Installationsanzahl 1,790
Aktuelle Version 1.0.1
Letztes Update 2023-11-22
Veröffentlichungsdatum 2021-08-16
Bewertung 1.00/5 Insgesamt 2 Bewertungen
Entwickler NowPlaying
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://nowplaying.site/
Hilfeseite URL https://discord.gg/c6586qD2Mk
URL der Datenschutzrichtlinien-Seite https://nowplaying.site/privacy-policy
Unterstützte Sprachen 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"
    ]
}