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
Eメール [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"
    }
}