ff2mpv
Tries to play links in MPV
ff2mpvคืออะไร?
ff2mpv เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ff2mpv และคุณลักษณะหลักของมันคือ "Tries to play links in MPV"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ff2mpv
ดาวน์โหลดไฟล์ส่วนขยาย ff2mpv ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The extension will try to open a URL in MPV. Click on the icon on the toolbar to attempt playing the tab's URL or open the context menu on a link and click MPV's icon. Please read the instructions to set it up here: https://github.com/woodruffw/ff2mpv Prior to version 4.0.0, this extension was a fork of Firefox's ff2mpv. On versions 4.0.0 and later, this extension has been unified with the original Firefox extension and now shares the same codebase.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ff2mpv |
ID | ephjcajbkgplkjmelpglennepbpmdpjg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/ff2mpv/ephjcajbkgplkjmelpglennepbpmdpjg |
คำอธิบาย | Tries to play links in MPV |
ขนาดไฟล์ | 314 KB |
จำนวนการติดตั้ง | 733 |
เวอร์ชันปัจจุบัน | 5.1.1 |
อัปเดตครั้งล่าสุด | 2024-02-18 |
วันที่เผยแพร่ | 2021-07-24 |
คะแนน | 3.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | ff2mpv |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/woodruffw/ff2mpv |
URL หน้าช่วยเหลือ | https://github.com/woodruffw/ff2mpv/issues/new/choose |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Tries to play links in MPV", "manifest_version": 2, "name": "ff2mpv", "version": "5.1.1", "options_ui": { "page": "options\/options.html", "open_in_tab": false }, "icons": { "16": "icons\/icon_16x16.png", "32": "icons\/icon_32x32.png", "48": "icons\/icon_48x48.png", "64": "icons\/icon_64x64.png", "256": "icons\/icon_256x256.png" }, "browser_action": { "default_icon": "icons\/icon_48x48.png", "default_title": "Play the current URL in MPV" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+V" }, "description": "Play the current URL in mpv" } }, "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "50.0" } }, "background": { "scripts": [ "browser-polyfill.js", "ff2mpv.js" ] }, "permissions": [ "nativeMessaging", "contextMenus", "activeTab", "storage" ] } |