Timeline for Youtube

Creates a timeline from youtube comments.

什么是Timeline for Youtube?

Timeline for Youtube是由faisal.mansoor开发的Chrome扩展程序,该扩展的主要功能是“Creates a timeline from youtube comments.”。

扩展截图

screenshot
screenshot
screenshot

下载Timeline for Youtube扩展crx文件

下载Timeline for Youtube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Timeline for Youtube Timeline for Youtube
ID obknajoccmgkokfoclhgjnlcekgglkmn
官方URL https://chrome.google.com/webstore/detail/timeline-for-youtube/obknajoccmgkokfoclhgjnlcekgglkmn
简介 Creates a timeline from youtube comments.
文件大小 49.28 KB
安装次数 136
当前版本 1.0.12
更新时间 2013-08-11
上架时间 2013-08-11
评分 1.57/5 共7次评分
开发者 faisal.mansoor
付费类型 free
扩展官网 https://www.facebook.com/CommentTimelineForYoutube
帮助页面URL https://www.facebook.com/CommentTimelineForYoutube
支持的语言 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"
    }
}