AlarmDJ - Online Alarm Clock

Alarm DJ is an online alarm clock that plays your MP3 files and YouTube videos of your choice as an alarm sound.

AlarmDJ - Online Alarm Clock란 무엇입니까?

AlarmDJ - Online Alarm Clock은(는) https://alarmdj.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Alarm DJ is an online alarm clock that plays your MP3 files and YouTube videos of your choice as an alarm sound."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

AlarmDJ - Online Alarm Clock 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Alarm DJ is an online alarm clock that plays your MP3 files and YouTube videos of your choice.
It can play YouTube videos on your TV as alarm using ChromeCast.
Play mp3 files and other audio files as an alarm.
Intuitive to use, run offline.                    

확장 프로그램 기본 정보

이름 AlarmDJ - Online Alarm Clock AlarmDJ - Online Alarm Clock
ID cechfneaapliekdhfifoclboelgfaloc
공식 URL https://chromewebstore.google.com/detail/alarmdj-online-alarm-cloc/cechfneaapliekdhfifoclboelgfaloc
설명 Alarm DJ is an online alarm clock that plays your MP3 files and YouTube videos of your choice as an alarm sound.
파일 크기 195 KB
설치 횟수 1,168
현재 버전 0.0.19
최근 업데이트 2019-03-19
출시 날짜 2019-03-19
평점 4.33/5 총 27 개의 평점
개발자 https://alarmdj.com
결제 유형 free
확장 프로그램 웹 사이트 https://alarmdj.com/
개인정보 보호 정책 페이지 URL https://alarmdj.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "short_name": "__MSG_extensionShortName__",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/alarmdj.com",
    "version": "0.0.19",
    "icons": {
        "16": "images\/icon-16x16.png",
        "32": "images\/icon-32x32.png",
        "48": "images\/icon-48x48.png",
        "70": "images\/icon-70x70.png",
        "96": "images\/icon-96x96.png",
        "144": "images\/icon-144x144.png",
        "150": "images\/icon-150x150.png",
        "230": "images\/icon-230x230.png"
    },
    "browser_action": {
        "default_title": "__MSG_extensionName__"
    },
    "offline_enabled": true,
    "permissions": [
        "notifications",
        "power",
        "tabs",
        "https:\/\/alarmdj.com\/*",
        "https:\/\/www.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.bundle.js"
            ],
            "css": [
                "style.css"
            ]
        },
        {
            "matches": [
                "https:\/\/alarmdj.com\/*"
            ],
            "js": [
                "content.alarm.clock.bundle.js"
            ],
            "run_at": "document_end"
        }
    ],
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.bundle.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    }
}