7

我在一个面板中,我想获取当前的浏览器 URL。到目前为止没有任何效果。这是我测试过的:

唯一甚至返回任何东西的东西,我得到类似的东西resource://jid0-18z0ptaugyu0arjkaoywztggyzg-at-jetpack/,然后是我当前的面板资源。显然这是一个范围问题,但我不知道如何引用实际的浏览器。

window.location.href 

我已经在最大的 Stack Overflow 线程中尝试了所有内容:Get current page URL from a firefox sidebar extension。他们都没有返回任何东西。

如果有帮助,我正在使用 Firefox Addon Builder。

4

6 回答 6

14

从侧边栏或弹出窗口获取 URL

要从侧边栏或弹出窗口中检索 URL,需要选项卡权限

"permissions": [
    "tabs"
  ]

那么你需要找到你想要的标签。如果您只想要活动选项卡,这可以正常工作,对于更高级的内容,我会在这里查看

function getPage(){
  browser.tabs.query({currentWindow: true, active: true})
    .then((tabs) => {
      console.log(tabs[0].url);
  })
}

从注入的 javascript 中获取 URL

如果您想要后台任务的 URL,我建议您使用此方法,因为您不需要权限。

这将为您提供一个后台脚本,然后将脚本注入互联网上的几乎所有网页。

"background": {
    "scripts": ["background.js"]
},

"content_scripts": [
    {
      "matches": ["https://www.*"],
      "js": ["modify-page/URL.js"]
    }
  ],

这将通过 URL js 注入到网页中,并向您的后台 js 发送消息以供使用。

var service= browser.runtime.connect({name:"port-from-cs"});

service.postMessage({location: document.URL});

此代码在您的后台 js 中,并将在每个新页面的 url 更改时收集它。

var portFromCS;

function connected(p) {
  portFromCS = p;
  portFromCS.onMessage.addListener(function(m) {
    if(m.location !== undefined){
      console.log(m.location);
    }
  });
}

browser.runtime.onConnect.addListener(connected);
于 2018-01-25T16:12:47.187 回答
7
// you need to use this service first
var windowsService = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService(Components.interfaces.nsIWindowMediator);

// window object representing the most recent (active) instance of Firefox
var currentWindow = windowsService.getMostRecentWindow('navigator:browser');

// most recent (active) browser object - that's the document frame inside the chrome
var browser = currentWindow.getBrowser();

// object containing all the data about an address displayed in the browser
var uri = browser.currentURI;

// textual representation of the actual full URL displayed in the browser
var url = uri.spec;
于 2012-07-21T21:07:23.323 回答
2

我相信使用 SDK 中的 APItabs可以做到这一点:

// Get the active tab's title.
var tabs = require("tabs");
console.log("title of active tab is " + tabs.activeTab.title);
于 2012-07-23T05:57:31.827 回答
1

API 显示,为了检索当前选项卡 URL

   var URL = require('sdk/url').URL;
   var tabs = require('sdk/tabs');
   var url = URL(tabs.activeTab.url);

   console.log('active: ' + tabs.activeTab.url);

这将打印到控制台:“ active: http://www.example.com

于 2013-11-21T20:49:50.030 回答
0

window为您提供当前窗口。 top给你最外层的框架。

于 2012-07-21T18:19:00.277 回答
0

对于插件,您可以使用以下代码从地址栏中获取 URL

Javascript代码:

function Doit(){
   var link = window.top.getBrowser().selectedBrowser.contentWindow.location.href;
   alert (link); 
}

HTML 代码:

<div onclick = "Doit()">Generate URL</div>

这将生成在浏览器的当前选项卡上显示的 URL。

于 2015-01-15T09:15:53.030 回答