YouTube Timestamps to Playlist

This extension creates a playlist from time tags on a YouTube page

YouTube Timestamps to Playlistคืออะไร?

YouTube Timestamps to Playlist เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hagabaka และคุณลักษณะหลักของมันคือ "This extension creates a playlist from time tags on a YouTube page"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Timestamps to Playlist

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ YouTube Timestamps to Playlist YouTube Timestamps to Playlist
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
อีเมล [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"
    ]
}