让 Band 可以右键保存和复制图片
// ==UserScript==
// @name BAND 图片保存
// @namespace https://me.penclub.club
// @version 0.1.4
// @description 让 Band 可以右键保存和复制图片
// @author lixiang810
// @match https://band.us/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=band.us
// @grant none
// @license AGPL-3.0-or-later
// @run-at document-body
// ==/UserScript==
(function() {
'use strict';
var styl = document.createElement('style');
styl.innerHTML = `.cComment .commentBody .photo::after {
display: none;
}
.uCollage .collageImage::after {
display: none;
}
.lyPhotoViewer .photoViewer .photoContent .preventSaveContent {
display: none;
}
.lyPhotoViewer .photoViewer .photoContent .btnArea {
position: static;
}
.photoItemLink::after {
display: none;
}
`;
document.body.appendChild(styl);
})();