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
公式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
Eメール [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"
        ]
    }
}