ff2mpv
Tries to play links in MPV
什麼是ff2mpv?
ff2mpv是由ff2mpv開發的Chrome擴展程式,該擴展的主要功能是“Tries to play links in MPV”。
擴展截圖
下載ff2mpv擴展crx文件
下載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 |
官方網址 | 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" ] } |