CurrentSong

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

Что такое CurrentSong?

CurrentSong - это расширение Chrome, разработанное Nerixyz, и его основная функция - "Implements a client to send the current active tab to a local server".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения CurrentSong

Скачайте файлы расширений CurrentSong в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название CurrentSong CurrentSong
ID alanjgmjccmkkpmpejgdhaodfjlmcone
Официальный URL https://chromewebstore.google.com/detail/currentsong/alanjgmjccmkkpmpejgdhaodfjlmcone
Описание Implements a client to send the current active tab to a local server
Размер файла 66.77 KB
Количество установок 648
Текущая Версия 0.5.1
Последнее Обновление 2021-04-05
Дата публикации 2020-09-07
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Nerixyz
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/Nerixyz/current-song-overlay
URL страницы помощи https://github.com/Nerixyz/current-song-overlay/issues
Поддерживаемые языки 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"
        }
    }
}