Youtube Alarm Clock

Plays a youtube video at specific time.

O que é Youtube Alarm Clock?

Youtube Alarm Clock é uma extensão do Chrome desenvolvida por feyyazakkus, e sua principal característica é "Plays a youtube video at specific time.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Youtube Alarm Clock

Baixe arquivos de extensão Youtube Alarm Clock no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Youtube Alarm Clock Youtube Alarm Clock
ID ehlpgfcbbkfhglelonfjbgkeaebomjeh
URL Oficial https://chromewebstore.google.com/detail/youtube-alarm-clock/ehlpgfcbbkfhglelonfjbgkeaebomjeh
Descrição Plays a youtube video at specific time.
Tamanho do Arquivo 270 KB
Contagem de Instalações 1,820
Versão Atual 1.1.0
Última Atualização 2017-01-26
Data de Publicação 2017-01-26
Classificação 3.54/5 Total de 26 Avaliações
Desenvolvedor feyyazakkus
Tipo de Pagamento free
Idiomas Suportados 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:\/\/*\/"
    ]
}