//全局拦图:停加载再删
(function(){const b=["tghdwxsb.png","jsjdesign.jpg","315tong.png","mobvipbmtoppic2024.png","055144_1636.png","tmbloading.gif","nolimit.png","dakasucc.png","sharrow.png","sharesucc.png"];function h(i){if(b.some(n=>i.src.includes(n))){i.src="";i.remove();}}function s(){document.querySelectorAll('img').forEach(h);}s();new MutationObserver(s).observe(document,{childList:!0,subtree:!0,attributes:!0,attributeFilter:['src']});})();


// 图标+替换
document.addEventListener('DOMContentLoaded', function() {
//图标
const favIcon = "https://a1.boltp.com/2026/03/20/69bd08c81ab94.png";
document.querySelectorAll('link[rel*="icon"]').forEach(el => {
el.href = ""; el.remove();
});
const link = document.createElement("link");
link.rel = "icon";
link.type = "image/png";
link.href = favIcon;
document.head.appendChild(link);
//head替换
document.title = document.title.replace(/中团网/g,"红树湾");
document.querySelector('meta[name="keywords"]').content = document.querySelector('meta[name="keywords"]').content.replace(/中团网/g,"红树湾");
document.querySelector('meta[name="description"]').content = document.querySelector('meta[name="description"]').content.replace(/中团网/g,"红树湾");
//body内底部替换
document.body.querySelector('.footer').innerHTML = document.body.querySelector('.footer').innerHTML.replace("蜂蜜家(广州)科技有限公司","红树湾家具博览中心(番禺店)");
});