NowPlaying.Site Extension

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

NowPlaying.Site Extension란 무엇입니까?

NowPlaying.Site Extension은(는) NowPlaying에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Implements a client to send the current active tab to the nowplaying widget"입니다.

확장 프로그램 스크린샷

screenshot

NowPlaying.Site Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}