Youtube Alarm Clock

Plays a youtube video at specific time.

Youtube Alarm Clockとは何ですか?

Youtube Alarm Clockはfeyyazakkusによって開発されたChromeの拡張機能で、その主な機能は「Plays a youtube video at specific time.」です。

拡張機能のスクリーンショット

screenshot

Youtube Alarm Clock拡張機能のCRXファイルをダウンロード

Youtube Alarm Clock拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This is a chrome extention that plays a youtube video at specific time. When an alarm triggered a popup will show up, video will start to play and you will see your alarm message on screen.

The browser should be open to trigger an alarm. When alarm time comes and browser is closed, then alarm will triggered immediately when you open the browser.

Note: Vevo videos and offical music videos are not allowed to be played in embedded players, try not to use them.                    

拡張機能の基本情報

名前 Youtube Alarm Clock Youtube Alarm Clock
ID ehlpgfcbbkfhglelonfjbgkeaebomjeh
公式URL https://chromewebstore.google.com/detail/youtube-alarm-clock/ehlpgfcbbkfhglelonfjbgkeaebomjeh
説明 Plays a youtube video at specific time.
ファイルサイズ 270 KB
インストール数 1,820
現在のバージョン 1.1.0
最終更新日 2017-01-26
公開日 2017-01-26
評価 3.54/5 合計 26 レビュー
開発者 feyyazakkus
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Alarm Clock",
    "short_name": "YAC",
    "version": "1.1.0",
    "description": "Plays a youtube video at specific time.",
    "browser_action": {
        "default_icon": "img\/icon16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/iframe_api.js",
                "js\/www-widgetapi.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "alarms",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}