在VS Code插件市场添加下载按钮
< 脚本 VS Code 插件下载助手 的反馈
Nice script!
One note though, the variable ele is not used!
ele
const startObserver = () => { observer = new MutationObserver(checkAndInject); const ele = document.querySelector('[role="tabpanel"]') || document.body; // observer.observe(document.body, config.observerOptions); observer.observe(ele, config.observerOptions); };
Thanks for your feedback! I've removed the unused variable.
登录(不可用)以发布留言。
Nice script!
One note though, the variable
ele
is not used!