你正在訪問的內容是外部程式的映像位址,僅用於使用者加速訪問,本站無法保證其可靠性。當前的連結位址(單點即可複製)為 https://greasyfork.org.cn/zh-CN/scripts/535668-vs-code-extension-download-helper/discussions/302534,源站連結 點此以跳轉。
在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
eleis not used!