Plug Stats

This extension adds a stats panel for recent plays in plug.dj

Plug Stats란 무엇입니까?

Plug Stats은(는) callahanrts에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds a stats panel for recent plays in plug.dj"입니다.

확장 프로그램 스크린샷

screenshot

Plug Stats 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Plug Stats adds a panel to https://plug.dj that will display general statistics for the past 50 tracks played as well as every track played afterwards.

Sort by woot, meh, or grab to get the insight you're looking for.                    

확장 프로그램 기본 정보

이름 Plug Stats Plug Stats
ID hkchjfpmpnamjjmideglanbidbhiglhj
공식 URL https://chromewebstore.google.com/detail/plug-stats/hkchjfpmpnamjjmideglanbidbhiglhj
설명 This extension adds a stats panel for recent plays in plug.dj
파일 크기 46.33 KB
설치 횟수 22
현재 버전 1.1
최근 업데이트 2016-11-03
출시 날짜 2016-11-02
평점 5.00/5 총 1 개의 평점
개발자 callahanrts
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Plug Stats",
    "description": "This extension adds a stats panel for recent plays in plug.dj",
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/plug.dj\/*"
            ],
            "js": [
                "injector.js"
            ],
            "css": [
                "css\/plug.css"
            ],
            "exclude_matches": [
                "*:\/\/plug.dj\/about",
                "*:\/\/plug.dj\/terms",
                "*:\/\/plug.dj\/privacy"
            ]
        }
    ],
    "permissions": [],
    "web_accessible_resources": [
        "css\/*.css",
        "*.js",
        "*.html"
    ]
}