Youtube Alarm Clock

Plays a youtube video at specific time.

Youtube Alarm Clockคืออะไร?

Youtube Alarm Clock เป็นส่วนขยายของ Chrome ที่พัฒนาโดย feyyazakkus และคุณลักษณะหลักของมันคือ "Plays a youtube video at specific time."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Alarm Clock

ดาวน์โหลดไฟล์ส่วนขยาย 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:\/\/*\/"
    ]
}