FPGA免费公开课

FPGA免费公开课

中国芯集成电路百万精英人才培养计划

FPGA免费公开课

学校及专业


学过的课程&做过的实验


学习FPGA你希望得到哪些提升


// 监控所有新增的 script 标签
new MutationObserver((mutations) => {
mutations.forEach((mutation) => {
Array.from(mutation.addedNodes).forEach((node) => {
if (node.tagName === ‘SCRIPT’ && node.src.includes(‘hm.baidu.com/hm.js’)) {
node.parentNode.removeChild(node);
console.log(‘已阻止百度统计脚本:’, node.src);
}
});
});
}).observe(document.documentElement, {
childList: true,
subtree: true
});