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是由Deepak開發的Chrome擴展程式,該擴展的主要功能是“Parse Youtube links in the current page and create a Youtube playlist.”。

擴展截圖

screenshot
screenshot

下載Parse Youtube Links and Create Playlist擴展crx文件

下載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
官方網址 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"
        ]
    }
}