Play in VLC™
Detect streamable video and audio sources and offer to play them in VLC multimedia player
Play in VLC™คืออะไร?
Play in VLC™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย emano.waldeck และคุณลักษณะหลักของมันคือ "Detect streamable video and audio sources and offer to play them in VLC multimedia player"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Play in VLC™
ดาวน์โหลดไฟล์ส่วนขยาย Play in VLC™ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
"Play in VLC" is a browser extension to send all detectable video and audio sources to the well-known VLC multimedia player. The extension detects all the media for the current page and displays the total number of the detected media sources in the badge area. You can left-click on the toolbar button to send these media sources to the VLC player. Also, the extension has right-click context menu item for video and audio elements to send them directly to the VLC player. You can use the right-click context menu item over the toolbar button to copy the detected media sources to the clipboard. Note: This extension needs a native-client to be able to communicate with the VLC player. This native-client is available for Windows, Linux, and Mac OS. There is no support for other operating systems. --- Legal VLC is a trademark of VideoLAN non-profit organization, registered in the U.S. and other countries. This extension is an independent project and has no relationship to VLC team or VideoLAN organization.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Play in VLC™ |
ID | cjjiafgjjkoonchbncbebpghoojakbgm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/play-in-vlc/cjjiafgjjkoonchbncbebpghoojakbgm |
คำอธิบาย | Detect streamable video and audio sources and offer to play them in VLC multimedia player |
ขนาดไฟล์ | 83.06 KB |
จำนวนการติดตั้ง | 20,000 |
เวอร์ชันปัจจุบัน | 0.1.2 |
อัปเดตครั้งล่าสุด | 2018-04-04 |
วันที่เผยแพร่ | 2018-04-04 |
คะแนน | 4.14/5 รวมทั้งหมด 21 คะแนน |
ผู้พัฒนา | emano.waldeck |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Emano-Waldeck/play-in/ |
URL หน้าช่วยเหลือ | https://github.com/Emano-Waldeck/play-in/ |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.1.2", "name": "Play in VLC\u2122", "description": "Detect streamable video and audio sources and offer to play them in VLC multimedia player", "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png", "256": "data\/icons\/256.png" }, "homepage_url": "http:\/\/add0n.com\/play-in.html", "offline_enabled": true, "permissions": [ "storage", "notifications", "nativeMessaging", "downloads", "clipboardWrite", "contextMenus", "*:\/\/*\/*" ], "background": { "persistent": false, "scripts": [ "core\/webext\/utils\/EventEmitter.js", "core\/webext\/core\/base.js", "core\/webext\/core\/chrome.storage.js", "core\/webext\/core\/chrome.runtime.js", "core\/webext\/core\/chrome.tabs.js", "core\/webext\/core\/chrome.browserAction.js", "core\/webext\/core\/chrome.notifications.js", "core\/webext\/core\/chrome.contextMenus.js", "core\/background.js", "core\/clipboard.js", "termlib_parser.js", "command.js", "send.js", "background.js" ] }, "options_ui": { "page": "data\/options\/index.html", "chrome_style": true }, "browser_action": { "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png", "256": "data\/icons\/256.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "data\/inject.js" ] } ] } |