NowPlaying.Site Extension

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

Cos'è NowPlaying.Site Extension?

NowPlaying.Site Extension è un'estensione di Chrome sviluppata da NowPlaying, e la sua funzione principale è "Implements a client to send the current active tab to the nowplaying widget".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione NowPlaying.Site Extension

Scarica i file di estensione NowPlaying.Site Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome NowPlaying.Site Extension NowPlaying.Site Extension
ID jacgmbcjfkkbnpjgghihpaamminefmep
URL Ufficiale https://chromewebstore.google.com/detail/nowplayingsite-extension/jacgmbcjfkkbnpjgghihpaamminefmep
Descrizione Implements a client to send the current active tab to the nowplaying widget
Dimensione del File 76.61 KB
Conteggio Installazioni 1,790
Versione Corrente 1.0.1
Ultimo Aggiornamento 2023-11-22
Data di Pubblicazione 2021-08-16
Valutazione 1.00/5 Totale 2 Valutazioni
Sviluppatore NowPlaying
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://nowplaying.site/
URL della Pagina di Aiuto https://discord.gg/c6586qD2Mk
URL della Pagina della Politica sulla Privacy https://nowplaying.site/privacy-policy
Lingue Supportate 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"
    ]
}