Google Chrome扩展程序可获取页面信息

时间:2011-07-29 09:47:08

标签: javascript google-chrome-extension

我正在制作Google Chrome扩展程序,我需要获取当前页面的网址和标题。我怎样才能做到这一点?

2 个答案:

答案 0 :(得分:16)

chrome.tabs.getSelected(null, function(tab) { //<-- "tab" has all the information
    console.log(tab.url);       //returns the url
    console.log(tab.title);     //returns the title
});

有关详情,请阅读chrome.tabs。关于tab对象,请阅读here


注意: chrome.tabs.getSelected has been deprecated since Chrome 16。如文档所示,chrome.tabs.query()应与参数{'active': true}一起使用,以选择活动标签。

chrome.tabs.query({active: true, currentWindow: true}, function(tabs){
    tabs[0].url;     //url
    tabs[0].title;   //title
});

答案 1 :(得分:7)

自Google Chrome 16以来,方法getSelected()已被弃用(官方文档中的许多文章尚未更新)。 Official message is here。要获取在指定窗口中选择的选项卡,请使用带有参数chrome.tabs.query()的{​​{1}}。所以现在看起来应该是这样的:

{'active': true}

修改chrome.tabs.query({ currentWindow: true, active: true }, function (tabs) { console.log(tabs[0].url); console.log(tabs[0].title); }); 是第一个有效标签。