本文介绍了添加每当用户更改选项卡时触发的侦听器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在创建一个Chrome扩展程序,并尝试获取每次更改用户选项卡时都会触发的功能。我一直在寻找webRequest API中的监听器,以及chrome.tabs,但无法确定要使用的内容以及不能使用的内容。
I'm creating a Chrome Extension and trying to get a function to fire everytime the user changes tab. I've been looking at the listeners in the webRequest API, and the chrome.tabs but couldn't figure what to use, and what not to use.
唯一的我需要的信息是它的url。
The only information I need from the tab is its url.
推荐答案
请看),但请考虑使用(自Chrome 22以来稳定)。
It definitely works in background pages (as Locercus confirmed in a comment), but please consider using event pages (stable since Chrome 22) instead.
这篇关于添加每当用户更改选项卡时触发的侦听器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!