YouTube Playlist
This extension transforms a youtube page that contains a video with multiple songs into a playlist
What is YouTube Playlist?
YouTube Playlist is a Chrome extension developed by Ivan Chub, and its main feature is "This extension transforms a youtube page that contains a video with multiple songs into a playlist".
Extension Screenshots
Download YouTube Playlist Extension CRX File
Download YouTube Playlist extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
If you would like to contribute, go here: https://github.com/ichub/youtube-playlist
Extension Basic Information
Name | |
ID | fpekldclcjpekfidkgfbgpffhbholbnd |
Official URL | https://chrome.google.com/webstore/detail/youtube-playlist/fpekldclcjpekfidkgfbgpffhbholbnd |
Description | This extension transforms a youtube page that contains a video with multiple songs into a playlist |
File Size | 34.28 KB |
Installation Count | 237 |
Current Version | 1.0 |
Last Updated | 2015-08-04 |
Publish Date | 2015-08-04 |
Rating | 3.25/5 Total 4 Ratings |
Developer | Ivan Chub |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Playlist", "description": "This extension transforms a youtube page that contains a video with multiple songs into a playlist", "version": "1.0", "permissions": [ "activeTab", "tabs", "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "injected.css" ], "js": [ "jquery.min.js", "injected.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "injected.html" ] } |