MPV Button
Adds a button for MPV player to YouTube
Cos'è MPV Button?
MPV Button è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Adds a button for MPV player to YouTube".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione MPV Button
Scarica i file di estensione MPV Button in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Adds a button to YouTube videos on YouTube.com that lets you play the video in MPV player (https://github.com/XENKing/mpvbutton)
Informazioni di Base sull'Estensione
Nome | MPV Button |
ID | kffgglnfnodcijffgdfbcaedicddooem |
URL Ufficiale | https://chromewebstore.google.com/detail/mpv-button/kffgglnfnodcijffgdfbcaedicddooem |
Descrizione | Adds a button for MPV player to YouTube |
Dimensione del File | 51.29 KB |
Conteggio Installazioni | 133 |
Versione Corrente | 1.2.3 |
Ultimo Aggiornamento | 2020-03-17 |
Data di Pubblicazione | 2020-03-17 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/XENKing/mpvbutton-chrome |
URL della Pagina di Aiuto | https://github.com/XENKing/mpvbutton-chrome/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.2.3", "manifest_version": 2, "description": "__MSG_appDescription__", "homepage_url": "https:\/\/github.com\/XENKing\/mpvbutton-chrome", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "content_scripts": [ { "matches": [ "*:\/\/youtube.com\/*", "*:\/\/www.youtube.com\/*", "*:\/\/youtu.be\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_start", "all_frames": false } ], "permissions": [] } |