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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouTube Timestamps to Playlist
قم بتنزيل ملفات الامتداد YouTube Timestamps to Playlist بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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" ] } |