Chrome Playlist
Make a playlist of youtube videos based on a bookmark folder.
Vad är Chrome Playlist?
Chrome Playlist är en Chrome-tillägg utvecklad av Bryan Chen, och dess huvudfunktion är "Make a playlist of youtube videos based on a bookmark folder.".
Tilläggsskärmbilder
Ladda ner Chrome Playlist-förlängningens CRX-fil
Ladda ner Chrome Playlist-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Select a bookmark folder containing lots of youtube links through the pop-up interface and then click play! A new tab will open that automatically cycles through the bookmarked videos in the folder as they end, acting as a custom playlist through youtube. You can use the popup to skip to a new randomly selected song as well.
Grundläggande Information om Tillägg
Namn | Chrome Playlist |
ID | dnodaodnfnledpfmlflemmimlpebigbc |
Officiell webbadress | https://chromewebstore.google.com/detail/chrome-playlist/dnodaodnfnledpfmlflemmimlpebigbc |
Beskrivning | Make a playlist of youtube videos based on a bookmark folder. |
Filstorlek | 41.46 KB |
Antal Installationer | 91 |
Aktuell Version | 1.0.3 |
Senast Uppdaterad | 2019-04-26 |
Publiceringsdatum | 2019-04-26 |
Utvecklare | Bryan Chen |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.0.3", "name": "Chrome Playlist", "description": "Make a playlist of youtube videos based on a bookmark folder.", "icons": { "16": "images\/note16.png", "48": "images\/note48.png", "128": "images\/note128.png" }, "browser_action": { "default_icon": "images\/note128.png", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "storage", "tabs", "bookmarks", "https:\/\/www.youtube.com\/*" ] } |