NowPlaying.Site Extension

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

Qu'est-ce que NowPlaying.Site Extension ?

NowPlaying.Site Extension est une extension Chrome développée par NowPlaying, et sa fonction principale est "Implements a client to send the current active tab to the nowplaying widget".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension NowPlaying.Site Extension

Téléchargez les fichiers d'extension NowPlaying.Site Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom NowPlaying.Site Extension NowPlaying.Site Extension
ID jacgmbcjfkkbnpjgghihpaamminefmep
URL Officiel https://chromewebstore.google.com/detail/nowplayingsite-extension/jacgmbcjfkkbnpjgghihpaamminefmep
Description Implements a client to send the current active tab to the nowplaying widget
Taille du Fichier 76.61 KB
Nombre d'Installations 1,790
Version Actuelle 1.0.1
Dernière Mise à Jour 2023-11-22
Date de Publication 2021-08-16
Évaluation 1.00/5 Total 2 Évaluations
Développeur NowPlaying
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://nowplaying.site/
URL de la Page d'Aide https://discord.gg/c6586qD2Mk
URL de la Page de Politique de Confidentialité https://nowplaying.site/privacy-policy
Langues Prises en Charge 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"
    ]
}