Power Hour

Allows you to turn a Spotify playlist into a power hour.

Power Hour란 무엇입니까?

Power Hour은(는) ross.michael22에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to turn a Spotify playlist into a power hour."입니다.

확장 프로그램 스크린샷

screenshot

Power Hour 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This simple chrome extension allows you to turn a Spotify playlist into a power hour.  Just install the plugin, navigate to the Spotify web player, and at the top of the screen you will see the logo for this extension and a few basic settings (on/off, notifications on/off, etc). While the box is checked, the next song will be triggered every 60 seconds (with a short notification) and a counter will keep track of your progress.  If you want to disable the sound effect between songs, just click the bell icon to turn them off.  You can also use the slider to adjust the volume of the sound effect between songs.                    

확장 프로그램 기본 정보

이름 Power Hour Power Hour
ID doecnbidkbkagliekcdcmchdnfmacdpm
공식 URL https://chromewebstore.google.com/detail/power-hour/doecnbidkbkagliekcdcmchdnfmacdpm
설명 Allows you to turn a Spotify playlist into a power hour.
파일 크기 281 KB
설치 횟수 655
현재 버전 1.0
최근 업데이트 2020-05-22
출시 날짜 2020-05-22
평점 3.67/5 총 3 개의 평점
개발자 ross.michael22
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Power Hour",
    "description": "Allows you to turn a Spotify playlist into a power hour.",
    "version": "1.0",
    "icons": {
        "128": "hourglass_128.png",
        "512": "hourglass_512.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "jquery.js",
                "app.js"
            ],
            "matches": [
                "https:\/\/open.spotify.com\/*",
                "http:\/\/open.spotify.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "http:\/\/*.spotify.com\/*",
        "https:\/\/*.spotify.com\/*"
    ],
    "web_accessible_resources": [
        "horse.mp3",
        "wasted.ogg",
        "shots.ogg",
        "shots2.ogg",
        "bell.png",
        "bell_off.png",
        "bell_off2.png",
        "hourglass_128.png",
        "hourglass_512.png"
    ]
}