Parse Youtube Links and Create Playlist

Parse Youtube links in the current page and create a Youtube playlist.

ما هو Parse Youtube Links and Create Playlist؟

Parse Youtube Links and Create Playlist هو إضافة Chrome تم تطويرها بواسطة Deepak، والميزة الرئيسية لها هي "Parse Youtube links in the current page and create a Youtube playlist.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Parse Youtube Links and Create Playlist

قم بتنزيل ملفات الامتداد Parse Youtube Links and Create Playlist بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This extension parses all Youtube links in the current page and creates a Youtube playlist.

Instructions:

- Visit the website you want to parse and create a Youtube playlist. (Eg: reddit.com/r/Music)
- Click the extension's icon next to the chrome address bar.
- Opens a new tab and creates a playlist on Youtube.                    

معلومات أساسية عن التمديد

الاسم Parse Youtube Links and Create Playlist Parse Youtube Links and Create Playlist
ID lelcdhabkkjhffonhfcfflbjaekdmege
عنوان URL الرسمي https://chromewebstore.google.com/detail/parse-youtube-links-and-c/lelcdhabkkjhffonhfcfflbjaekdmege
الوصف Parse Youtube links in the current page and create a Youtube playlist.
حجم الملف 32.89 KB
عدد التثبيتات 725
النسخة الحالية 0.1
آخر تحديث 2018-03-01
تاريخ النشر 2018-03-01
تقييم 3.70/5 مجموع تقييمات 10
المطور Deepak
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Parse Youtube Links and Create Playlist",
    "description": "Parse Youtube links in the current page and create a Youtube playlist.",
    "version": "0.1",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon32.png",
        "default_title": "Parse and Create Youtube playlist."
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lodash.min.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}