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文件

下载AlarmDJ - Online Alarm Clock扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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