Timeline for Youtube

Creates a timeline from youtube comments.

O que é Timeline for Youtube?

Timeline for Youtube é uma extensão do Chrome desenvolvida por faisal.mansoor, e sua principal característica é "Creates a timeline from youtube comments.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Timeline for Youtube

Baixe arquivos de extensão Timeline for Youtube 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

                        A Google Chrome plugin that automatically creates a Youtube video timeline from its comments. Great for getting an overall view of which section of the video viewers found interesting. Also helps skip the boring parts.                    

Informações Básicas da Extensão

Nome Timeline for Youtube Timeline for Youtube
ID obknajoccmgkokfoclhgjnlcekgglkmn
URL Oficial https://chrome.google.com/webstore/detail/timeline-for-youtube/obknajoccmgkokfoclhgjnlcekgglkmn
Descrição Creates a timeline from youtube comments.
Tamanho do Arquivo 49.28 KB
Contagem de Instalações 136
Versão Atual 1.0.12
Última Atualização 2013-08-11
Data de Publicação 2013-08-11
Classificação 1.57/5 Total de 7 Avaliações
Desenvolvedor faisal.mansoor
Tipo de Pagamento free
Site da Extensão https://www.facebook.com/CommentTimelineForYoutube
URL da Página de Ajuda https://www.facebook.com/CommentTimelineForYoutube
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Timeline for Youtube",
    "description": "Creates a timeline from youtube comments.",
    "manifest_version": 2,
    "version": "1.0.12",
    "content_scripts": [
        {
            "js": [
                "jquery-1.9.1.js",
                "utilities.js",
                "ycomments.js"
            ],
            "css": [
                "ycomments.css"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/watch*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery-1.9.1.js",
            "utilities.js",
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "http:\/\/www.youtube.com\/",
        "https:\/\/www.youtube.com\/",
        "storage"
    ],
    "web_accessible_resources": [
        "settings.png"
    ],
    "icons": {
        "16": "icon128.png",
        "48": "icon128.png",
        "128": "icon128.png"
    }
}