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
官方網址 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"
    }
}