Youtube Alarm Clock

Plays a youtube video at specific time.

Cos'è Youtube Alarm Clock?

Youtube Alarm Clock è un'estensione di Chrome sviluppata da feyyazakkus, e la sua funzione principale è "Plays a youtube video at specific time.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Youtube Alarm Clock

Scarica i file di estensione Youtube Alarm Clock in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Youtube Alarm Clock Youtube Alarm Clock
ID ehlpgfcbbkfhglelonfjbgkeaebomjeh
URL Ufficiale https://chromewebstore.google.com/detail/youtube-alarm-clock/ehlpgfcbbkfhglelonfjbgkeaebomjeh
Descrizione Plays a youtube video at specific time.
Dimensione del File 270 KB
Conteggio Installazioni 1,820
Versione Corrente 1.1.0
Ultimo Aggiornamento 2017-01-26
Data di Pubblicazione 2017-01-26
Valutazione 3.54/5 Totale 26 Valutazioni
Sviluppatore feyyazakkus
Tipo di Pagamento free
Lingue Supportate 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:\/\/*\/"
    ]
}