Youtube Time Marks

Reads Youtube description and creates video time marks.

什么是Youtube Time Marks?

Youtube Time Marks是由RepoGamesStudio开发的Chrome扩展程序,该扩展的主要功能是“Reads Youtube description and creates video time marks.”。

扩展截图

screenshot

下载Youtube Time Marks扩展crx文件

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

扩展使用说明

                        Usable mostly to long youtube interviews
It reads description in the following format:

00:00:00 desc1
00:01:34 desc2
00:01:47 desc3
00:02:44 desc4
...

and creates time marks automatically.                    

扩展基本信息

名称 Youtube Time Marks Youtube Time Marks
ID pphlndhfdfilkemppecnknkefjoolibp
官方URL https://chrome.google.com/webstore/detail/youtube-time-marks/pphlndhfdfilkemppecnknkefjoolibp
简介 Reads Youtube description and creates video time marks.
文件大小 12.05 KB
安装次数 11
当前版本 0.0.3
更新时间 2018-06-30
上架时间 2018-06-30
评分 5.00/5 共2次评分
开发者 RepoGamesStudio
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.facebook.com/RepoGames/
帮助页面URL https://www.facebook.com/RepoGames/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Time Marks",
    "version": "0.0.3",
    "description": "Reads Youtube description and creates video time marks.",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_idle",
            "css": [
                "styles.css"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}