### 功能描述 GM_openInTab 提供允许以闲置方式打开的选项打开,避免占用过多内存与资源 ### 使用场景 批量打开页面时, 避免资源占用 ### 附加说明 ```javascript const tab_options = { active: false, insert: true, setParent: true , unload: true}; GM_openInTab(url, tab_options); ```