2

我想构建一个类似于Chrome dictionary的扩展。当用户左键单击任何选项卡上的网页时,应通知我的扩展程序。

我搜索了整个 chrome.* API,但没有找到那种事件。还尝试使用此查询进行谷歌搜索:“如何在用户单击 chrome api 中的网页时获得通知”。未能得到任何结果。

这在 chrome api 中是否被禁止?我发现 扩展无法收听选项卡和导航按钮,但据我了解,这与我的问题无关。

任何关于如何完成这项工作的建议都将受到高度赞赏。

4

1 回答 1

1

You'll need to attach a content script to all pages

Google Chrome Extensions: Content Scripts

In that script attach a listener to the document to catch all clicks (like @Jashwant said) then pass a message back to your extension to perform some behaviour:

Google Chrome Extensions: Message Passing

于 2012-06-30T14:12:23.180 回答