YouTube Playlist

This extension transforms a youtube page that contains a video with multiple songs into a playlist

YouTube Playlist क्या है?

YouTube Playlist Ivan Chub द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension transforms a youtube page that contains a video with multiple songs into a playlist"।

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

screenshot

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

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

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

                        If you would like to contribute, go here: https://github.com/ichub/youtube-playlist                    

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

नाम YouTube Playlist YouTube Playlist
ID fpekldclcjpekfidkgfbgpffhbholbnd
आधिकारिक URL https://chrome.google.com/webstore/detail/youtube-playlist/fpekldclcjpekfidkgfbgpffhbholbnd
विवरण This extension transforms a youtube page that contains a video with multiple songs into a playlist
फ़ाइल का आकार 34.28 KB
स्थापना संख्या 237
वर्तमान संस्करण 1.0
अंतिम अपडेट 2015-08-04
प्रकाशन तिथि 2015-08-04
रेटिंग 3.25/5 कुल 4 रेटिंग्स
डेवलपर Ivan Chub
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    ]
}