请问这个名叫forest-ext-shadow-host的盒子怎么来的

问题遇到的现象和发生背景

就是想测试一个防抖函数,就写了一个盒子,但是页面多了一个名叫forest-ext-shadow-host的盒子,请问这个盒子哪来的

问题相关代码,请勿粘贴截图

```html
 <style>
        div{
            width: 200px;
            height: 200px;
            background-color: pink;
            }
    </style>
    </head>
    <body>
        <div>test</div>
        <script>
          // 回调
          function callback(){
            console.log(111);
          }
          // 防抖函数
          function debounce(callback,delay)  {
            let timer = null;
            return function() {
              if(timer){clearTimeout(timer);}
              timer = setTimeout(callback,delay);
            }
          }
            let box= document.querySelector('div')
            box.addEventListener('click',debounce(callback,3000))
        </script>
    </body>


###### 运行结果及报错内容 


![img](https://img-mid.csdnimg.cn/release/static/image/mid/ask/079925290646159.jpg "#left")

可能是你浏览器装的一些插件生成的