NowPlaying.Site Extension

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

Что такое NowPlaying.Site Extension?

NowPlaying.Site Extension - это расширение Chrome, разработанное NowPlaying, и его основная функция - "Implements a client to send the current active tab to the nowplaying widget".

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

screenshot

Скачать файл CRX расширения NowPlaying.Site Extension

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

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

                        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                    

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

Название NowPlaying.Site Extension NowPlaying.Site Extension
ID jacgmbcjfkkbnpjgghihpaamminefmep
Официальный URL https://chromewebstore.google.com/detail/nowplayingsite-extension/jacgmbcjfkkbnpjgghihpaamminefmep
Описание Implements a client to send the current active tab to the nowplaying widget
Размер файла 76.61 KB
Количество установок 1,790
Текущая Версия 1.0.1
Последнее Обновление 2023-11-22
Дата публикации 2021-08-16
Рейтинг 1.00/5 Всего 2 оценок
Разработчик NowPlaying
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://nowplaying.site/
URL страницы помощи https://discord.gg/c6586qD2Mk
URL страницы политики конфиденциальности https://nowplaying.site/privacy-policy
Поддерживаемые языки 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"
    ]
}