保存变量chrome扩展中的当前选项卡

时间:2015-01-18 20:47:06

标签: javascript google-chrome-extension

我正在尝试将当前活动标签的网址保存在弹出式Chrome扩展程序中的变量中。

尝试了几种不同的方法,但想知道它们是否是通用的“将url保存为变量”脚本?

1 个答案:

答案 0 :(得分:1)

在弹出窗口中,您可以使用"activeTab" permission,从而获得对当前有效标签的完全访问权限。

从那里可以毫不奇怪地使用chrome.tabs API

chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
   var currentURL = tabs[0].url;
   // You can use currentURL here..
});
// But not here, as that function is asynchronous