9 Star 10 Fork 2

风飞扬/web2mpv

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
background.js 435 Bytes
一键复制 编辑 原始数据 按行查看 历史
chrome.browserAction.onClicked.addListener(function(){
chrome.tabs.executeScript(null, {file: "play.js"});
});
function playInMpv(info, tab) {
var playurl = "ytb://" + info.linkUrl;
chrome.tabs.executeScript(tab.id, {code:'window.location.href="' + playurl + '"'});
}
chrome.contextMenus.create({
title: "Play in mpv",
contexts: ["link"],
onclick: function(info, tab) {
playInMpv(info, tab);
}
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/alex8224/web2mpv.git
[email protected]:alex8224/web2mpv.git
alex8224
web2mpv
web2mpv
master

搜索帮助