• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

我获得标签的前网址

用户头像
it1352
帮助1

问题说明

在编写Chrome扩展程序时,如果有选项卡,如何才能在该选项卡中获取先前访问过的页面的网址?也就是说,在我点击返回之后出现在omnibar中的url?

When writing a Chrome extension, given a tab, how can I get the URL of the previously-visited page in that tab? i.e. the url that will appear in the omnibar after I hit "back"?

正确答案

#1

由于我找不到任何API方法,我刚才应用了 vux777上面的建议 :每次加载一个页面时,我都会存储一个从它的id到它的URL的映射。然后,当我想查找标签的上一页时,我可以在那里搜索它。

Since I could not find any API approach, I just applied vux777's suggestion above: every time a page loads I store a mapping from its id to its URL. Then when I want to find the previous page of a tab, I can search for it there.

因此,存储:

chrome.webNavigation.onCommitted.addListener(function (data) {
  if (data.frameId !== 0) {
      // Don't trigger on iframes
      return;
  }

  var tabIdToUrl = {};
  tabIdToUrl[data.tabId.toString()] = data.url;
  chrome.storage.local.set(tabIdToUrl);
});

检索:

And retrieval:

chrome.storage.local.get(tabId, function (item) {
  var url = item[tabId];
  ...
});

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcgfcak
系列文章
更多 icon
同类精品
更多 icon
继续加载