Open In MPV
Open videos and audios in MPV.
Was ist Open In MPV?
Open In MPV ist eine Chrome-Erweiterung, die von Eric Karnes entwickelt wurde, und ihr Hauptmerkmal ist "Open videos and audios in MPV.".
Erweiterungsscreenshots
Open In MPV-Erweiterungs-CRX-Datei herunterladen
Laden Sie Open In MPV-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | epaldpobheocfkfioepkcalnlhlgpcag |
| Offizielle URL | https://chrome.google.com/webstore/detail/open-in-mpv/epaldpobheocfkfioepkcalnlhlgpcag |
| Beschreibung | Open videos and audios in MPV. |
| Dateigröße | 399 KB |
| Installationsanzahl | 181 |
| Aktuelle Version | 1.01 |
| Letztes Update | 2020-11-06 |
| Veröffentlichungsdatum | 2020-10-30 |
| Bewertung | 1.00/5 Insgesamt 1 Bewertungen |
| Entwickler | Eric Karnes |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/GreyAsteroid/open-in-mpv |
| Hilfeseite URL | https://github.com/GreyAsteroid/open-in-mpv/issues |
| Unterstützte Sprachen | 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"
}
} | |