ff2mpv

Tries to play links in MPV

ff2mpv क्या है?

ff2mpv ff2mpv द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tries to play links in MPV"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ff2mpv एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
    ]
}