MPV Button
Adds a button for MPV player to YouTube
什么是MPV Button?
MPV Button是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Adds a button for MPV player to YouTube”。
扩展截图
下载MPV Button扩展crx文件
下载MPV Button扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds a button to YouTube videos on YouTube.com that lets you play the video in MPV player (https://github.com/XENKing/mpvbutton)
扩展基本信息
名称 | MPV Button |
ID | kffgglnfnodcijffgdfbcaedicddooem |
官方URL | https://chromewebstore.google.com/detail/mpv-button/kffgglnfnodcijffgdfbcaedicddooem |
简介 | Adds a button for MPV player to YouTube |
文件大小 | 51.29 KB |
安装次数 | 133 |
当前版本 | 1.2.3 |
更新时间 | 2020-03-17 |
上架时间 | 2020-03-17 |
评分 | 3.00/5 共2次评分 |
开发者 | Unknown |
付费类型 | free |
扩展官网 | https://github.com/XENKing/mpvbutton-chrome |
帮助页面URL | https://github.com/XENKing/mpvbutton-chrome/issues |
支持的语言 | 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": [] } |