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」です。
拡張機能のスクリーンショット
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 |
ID | ocaofghmcnmckbnlmgocfjemofblpgdk |
公式URL | 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 |
Eメール | [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 } |