Youtime

Youtime will pick up all the time stamps present in the comments and description for you

什麼是Youtime?

Youtime是由Ashwath Vijayan開發的Chrome擴展程式,該擴展的主要功能是“Youtime will pick up all the time stamps present in the comments and description for you”。

擴展截圖

screenshot
screenshot

下載Youtime擴展crx文件

下載Youtime擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Youtime is a timestamp with description extractor for Youtube videos. There are times when you are listening to a playlist and wish there was an easier way to skip to the next song rather than going through the description and comments, and finding that one comment that has the timestamps in it. Well, look no further, Youtime can do that for you! Just load up the comments and hit the extension, you will find all the timestamps that exist in the comment and the description section.

But wait up, its not just hour long playlists that Youtime helps, but also the short videos which has all the interesting sections mentioned in the comments by other users, you will be able to see that too.                    

擴展基本資訊

名稱 Youtime Youtime
ID ocaofghmcnmckbnlmgocfjemofblpgdk
官方網址 https://chromewebstore.google.com/detail/youtime/ocaofghmcnmckbnlmgocfjemofblpgdk
簡介 Youtime will pick up all the time stamps present in the comments and description for you
檔案大小 49.5 KB
安裝次數 22
目前版本 1.0
更新時間 2020-07-08
上架時間 2020-07-08
評分 5.00/5 共 4 次評分
開發者 Ashwath Vijayan
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/AshwathVS
說明頁面URL https://github.com/AshwathVS/youtime
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtime",
    "version": "1.0",
    "description": "Youtime will pick up all the time stamps present in the comments and description for you",
    "permissions": [
        "webNavigation",
        "https:\/\/www.youtube.com\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_title": "Youtime - Switch to Youtube to use the extension",
        "default_icon": {
            "16": "images\/icon-disabled-16.png",
            "32": "images\/icon-disabled-32.png"
        }
    },
    "web_accessible_resources": [
        "script.js"
    ],
    "manifest_version": 2
}