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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        ]
    }
}