Youtube Alarm Clock

Plays a youtube video at specific time.

Youtube Alarm Clock là gì?

Youtube Alarm Clock là một tiện ích mở rộng Chrome được phát triển bởi feyyazakkus, và tính năng chính của nó là "Plays a youtube video at specific time.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Youtube Alarm Clock

Tải xuống các tệp mở rộng Youtube Alarm Clock dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Youtube Alarm Clock Youtube Alarm Clock
ID ehlpgfcbbkfhglelonfjbgkeaebomjeh
URL Chính Thức https://chromewebstore.google.com/detail/youtube-alarm-clock/ehlpgfcbbkfhglelonfjbgkeaebomjeh
Mô tả Plays a youtube video at specific time.
Kích Thước Tệp 270 KB
Số Lần Cài Đặt 1,820
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2017-01-26
Ngày Phát Hành 2017-01-26
Đánh Giá 3.54/5 Tổng số 26 Đánh Giá
Nhà Phát Triển feyyazakkus
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/"
    ]
}