使用油猴脚本给猫抓发送资源
Tampermonkey 俗称油猴 chrome脚本扩展神器。官方扩展商店对扩展的更新审核非常慢,油猴脚本也能快速编写和更新对特定网站的支持。
最后更新于
fetch("https://bmmmd.com/")
.then(response => response.blob())
.then(function (blob) {
window.postMessage({
action: "catCatchAddMedia",
url: window.URL.createObjectURL(blob),
href: location.href,
ext: "html",
});
});window.postMessage({
action: "catCatchAddKey",
key: "aHR0cHM6Ly9ibW1tZC5jb20=",
href: location.href,
ext: "base64Key",
});