企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[TOC] ## 概述 - popup 是指点击插件显示的页面,格式为html. - 原生html 页面不允许内联 javascript,只能通过引入 - html 的数据每次显示都会自动销毁,需要记录结果则使用 background chrome的一些插件可唉 popup 中是使用如 可获得当前页面的url ``` chrome.tabs.query({active: true, currentWindow: true}, function (tabs) { let url = tabs[0].url }); ``` 其他参数如 ``` { "active": true, "audible": false, "autoDiscardable": true, "discarded": false, "favIconUrl": "https://github.githubassets.com/favicons/favicon.svg", "groupId": -1, "height": 937, "highlighted": true, "id": 539886286, "incognito": false, "index": 18, "mutedInfo": { "muted": false }, "pinned": false, "selected": true, "status": "complete", "title": "examples/delta-flyer.tsx at main · PlasmoHQ/examples", "url": "https://github.com/PlasmoHQ/examples/blob/main/with-tabs/tabs/delta-flyer.tsx", "width": 1920, "windowId": 539883173 } ```