CurrentSong

Implements a client to send the current active tab to a local server

Vad är CurrentSong?

CurrentSong är en Chrome-tillägg utvecklad av Nerixyz, och dess huvudfunktion är "Implements a client to send the current active tab to a local server".

Tilläggsskärmbilder

screenshot

Ladda ner CurrentSong-förlängningens CRX-fil

Ladda ner CurrentSong-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This extension enables the Current Song Overlay to display information about the currently playing song (for example: YouTube, SoundCloud).                    

Grundläggande Information om Tillägg

Namn CurrentSong CurrentSong
ID alanjgmjccmkkpmpejgdhaodfjlmcone
Officiell webbadress https://chromewebstore.google.com/detail/currentsong/alanjgmjccmkkpmpejgdhaodfjlmcone
Beskrivning Implements a client to send the current active tab to a local server
Filstorlek 66.77 KB
Antal Installationer 648
Aktuell Version 0.5.1
Senast Uppdaterad 2021-04-05
Publiceringsdatum 2020-09-07
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Nerixyz
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/Nerixyz/current-song-overlay
Hjälpsida URL https://github.com/Nerixyz/current-song-overlay/issues
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CurrentSong",
    "version": "0.5.1",
    "description": "Implements a client to send the current active tab to a local server",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content-scripts\/trackVideoProgress.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.soundcloud.com\/*"
            ],
            "js": [
                "content-scripts\/soundcloud.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.neverthink.tv\/*"
            ],
            "js": [
                "content-scripts\/neverthink.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content-scripts\/mediaSessionProxy.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "content-scripts\/mediaSessionProxy.inject.js"
    ],
    "permissions": [
        "tabs"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{02914143-ede8-492c-8ad4-8a3af03f75bb}",
            "strict_min_version": "78.0"
        }
    }
}