YouTube Queue-To-Playlist

Simple button to convert current queue to playlist

YouTube Queue-To-Playlist क्या है?

YouTube Queue-To-Playlist thomas द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple button to convert current queue to playlist"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube Queue-To-Playlist एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This is a very simple chrome extension that I put together in about an hour so that I can export my queue from YouTube to a playlist. 

If you have this extension enabled, you should see a "Save Queue" button next to the "Clear Queue" button. When you press it, your queue will be converted to an untitled playlist. 

Note: this extension is very basic and was created from my personal need to not lose good queues. 

However, there is a maximum amount of songs that it will convert (50 afaik).

If people find this useful and there is enough interest, I may spend some more time on it (and possibly use the "proper way" of converting to a playlist; aka through the API).                    

एक्सटेंशन की मूल जानकारी

नाम YouTube Queue-To-Playlist YouTube Queue-To-Playlist
ID pimcaeohimnhdgpfgodokpknocmmkopf
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-queue-to-playlist/pimcaeohimnhdgpfgodokpknocmmkopf
विवरण Simple button to convert current queue to playlist
फ़ाइल का आकार 75.72 KB
स्थापना संख्या 359
वर्तमान संस्करण 1.0.0.1
अंतिम अपडेट 2020-02-12
प्रकाशन तिथि 2020-02-10
रेटिंग 2.27/5 कुल 11 रेटिंग्स
डेवलपर thomas
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Queue-To-Playlist",
    "description": "Simple button to convert current queue to playlist",
    "version": "1.0.0.1",
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "YouTube Queue-To-Playlist"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "\/js\/qtp.js"
            ],
            "css": [
                "\/css\/qtp.css"
            ]
        }
    ],
    "permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "short_name": "YouTubeQTP"
}