Parse Youtube Links and Create Playlist

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

Parse Youtube Links and Create Playlist là gì?

Parse Youtube Links and Create Playlist là một tiện ích mở rộng Chrome được phát triển bởi Deepak, và tính năng chính của nó là "Parse Youtube links in the current page and create a Youtube playlist.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Parse Youtube Links and Create Playlist

Tải xuống các tệp mở rộng Parse Youtube Links and Create Playlist dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Parse Youtube Links and Create Playlist Parse Youtube Links and Create Playlist
ID lelcdhabkkjhffonhfcfflbjaekdmege
URL Chính Thức https://chromewebstore.google.com/detail/parse-youtube-links-and-c/lelcdhabkkjhffonhfcfflbjaekdmege
Mô tả Parse Youtube links in the current page and create a Youtube playlist.
Kích Thước Tệp 32.89 KB
Số Lần Cài Đặt 725
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2018-03-01
Ngày Phát Hành 2018-03-01
Đánh Giá 3.70/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Deepak
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}