Send to VLC (VideoLAN) media player

Send media stream links from current tab to VLC (VideoLAN) media player

Send to VLC (VideoLAN) media player là gì?

Send to VLC (VideoLAN) media player là một tiện ích mở rộng Chrome được phát triển bởi unixeco, và tính năng chính của nó là "Send media stream links from current tab to VLC (VideoLAN) media player".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Send to VLC (VideoLAN) media player

Tải xuống các tệp mở rộng Send to VLC (VideoLAN) media player 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 observes network activity and offers "send-to-VLC" functionality when a streamable media is detected. This way you can watch media streams in your VLC media player instead of the built-in media player and use the power of VLC for watching or listening to media sources.

There are many optimizations performed on this extension to make it as lightweight as possible. For instance, the background page of the extension is in nonpersistent mode and hence the extension does not use any resource when it is inactive. Also, media detection algorithm does not demand usual observation and hence it is much lighter compared to other similar extensions.

Please report bugs to:
https://github.com/belaviyo/send-to-vlc/issues

For more info on how the extension work or to browser some useful FAQs check:
http://add0n.com/send-to-vlc.html

Notes:
1. For the extension to be able to send media resources to an external executable such as VLC, a small native client needs to be installed. For more info please check the FAQs page of the extension
2. Badge number that is shown on some pages refers to the total number of the detected music tracks (either audio or video requests). If you don't need this, go to the options page and disable the feature. Also you can change the badge color to increase or decrease its visibility
3. As of version 0.1.9, it is possible to disable the "One Last Step" page. This will prevent the extension from opening this page in case an error occurs. Use this if you are 100% sure your setup is okay and you just want to ignore the errors.                    

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

Tên Send to VLC (VideoLAN) media player Send to VLC (VideoLAN) media player
ID hfckgfbhdacemicpjljhfbjmkiggeche
URL Chính Thức https://chromewebstore.google.com/detail/send-to-vlc-videolan-medi/hfckgfbhdacemicpjljhfbjmkiggeche
Mô tả Send media stream links from current tab to VLC (VideoLAN) media player
Kích Thước Tệp 72.67 KB
Số Lần Cài Đặt 9,234
Phiên Bản Hiện Tại 0.2.1
Cập Nhật Lần Cuối 2018-10-03
Ngày Phát Hành 2018-10-03
Đánh Giá 3.76/5 Tổng số 33 Đánh Giá
Nhà Phát Triển unixeco
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://add0n.com/send-to-vlc.html
URL Trang Trợ Giúp http://add0n.com/send-to-vlc.html
URL Trang Chính Sách Bảo Mật https://add0n.com/policies/unixeco.txt
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Send to VLC (VideoLAN) media player",
    "description": "__MSG_appDesc__",
    "version": "0.2.1",
    "default_locale": "en",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs",
        "nativeMessaging",
        "notifications",
        "contextMenus",
        "downloads",
        "",
        "clipboardWrite",
        "history"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_globs": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "data\/inject.js"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "command.js",
            "termlib_parser.js",
            "common.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    },
    "homepage_url": "http:\/\/add0n.com\/send-to.html?from=vlc",
    "options_ui": {
        "page": "data\/options\/index.html",
        "chrome_style": true
    }
}