Open In MPV
Open videos and audios in MPV.
Qu'est-ce que Open In MPV ?
Open In MPV est une extension Chrome développée par Eric Karnes, et sa fonction principale est "Open videos and audios in MPV.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Open In MPV
Téléchargez les fichiers d'extension Open In MPV au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
I modified the IINA Chrome extension to work with MPV so I'm not required to have a background process running like what the alternatives need. The only caveat is that you need to assign MPV to the ytdl:// url scheme. On a Mac this can be achieved by using https://github.com/Lord-Kamina/SwiftDefaultApps
Informations de Base sur l'Extension
Nom | |
ID | epaldpobheocfkfioepkcalnlhlgpcag |
URL Officiel | https://chrome.google.com/webstore/detail/open-in-mpv/epaldpobheocfkfioepkcalnlhlgpcag |
Description | Open videos and audios in MPV. |
Taille du Fichier | 399 KB |
Nombre d'Installations | 181 |
Version Actuelle | 1.01 |
Dernière Mise à Jour | 2020-11-06 |
Date de Publication | 2020-10-30 |
Évaluation | 1.00/5 Total 1 Évaluations |
Développeur | Eric Karnes |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/GreyAsteroid/open-in-mpv |
URL de la Page d'Aide | https://github.com/GreyAsteroid/open-in-mpv/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Open In MPV", "description": "Open videos and audios in MPV.", "version": "1.01", "background": { "page": "background.html" }, "browser_action": { "default_icon": { "16": "icon16.png", "19": "icon19.png", "32": "icon32.png", "38": "icon38.png", "48": "icon48.png", "64": "icon64.png", "96": "icon96.png", "128": "icon128.png", "256": "icon256.png", "512": "icon512.png" }, "default_title": "Open In MPV" }, "permissions": [ "activeTab" ], "icons": { "16": "icon16.png", "19": "icon19.png", "32": "icon32.png", "38": "icon38.png", "48": "icon48.png", "64": "icon64.png", "96": "icon96.png", "128": "icon128.png", "256": "icon256.png", "512": "icon512.png" } } |