YouTube Timestamps to Playlist
This extension creates a playlist from time tags on a YouTube page
YouTube Timestamps to Playlistとは何ですか?
YouTube Timestamps to Playlistはhagabakaによって開発されたChromeの拡張機能で、その主な機能は「This extension creates a playlist from time tags on a YouTube page」です。
拡張機能のスクリーンショット
YouTube Timestamps to Playlist拡張機能のCRXファイルをダウンロード
YouTube Timestamps to Playlist拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
When viewing a video on YouTube containing multiple songs, this extension looks for a list of "time tags", for example "0:40 Symphony No. 5 in C Minor", and builds a playlist. You can open the playlist with one click, and easily change to a different song or seek within the song. It also displays a notification when a new song starts playing. 拡張機能の基本情報
| 名前 | |
| ID | jmjgdfollcmomdjljhjkcenehcgbiogm |
| 公式URL | https://chromewebstore.google.com/detail/youtube-timestamps-to-pla/jmjgdfollcmomdjljhjkcenehcgbiogm |
| 説明 | This extension creates a playlist from time tags on a YouTube page |
| ファイルサイズ | 375 KB |
| インストール数 | 271 |
| 現在のバージョン | 1.1 |
| 最終更新日 | 2017-11-27 |
| 公開日 | 2017-11-27 |
| 評価 | 3.00/5 合計 2 レビュー |
| 開発者 | hagabaka |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/hagabaka/youtube-timestamps-to-playlist |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "YouTube Timestamps to Playlist",
"description": "This extension creates a playlist from time tags on a YouTube page",
"version": "1.1",
"icons": {
"128": "icon128.png",
"48": "icon48.png"
},
"background": {
"scripts": [
"common.js",
"background.js"
]
},
"page_action": {
"default_icon": "icon48.png",
"default_title": "Playlist",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/watch*"
],
"js": [
"common.js",
"content-script.js"
]
}
],
"permissions": [
"notifications"
]
} | |