docs.rodeo

MDN Web Docs mirror

extension.getURL()

{{AddonSidebar}} 

[!WARNING] This function is deprecated. Please use runtime.getURL.

Converts a relative path within an extension’s install directory to a fully-qualified URL.

Syntax

browser.extension.getURL(
  path // string
)

Parameters

Return value

string. The fully-qualified URL to the resource.

Browser compatibility

{{Compat}} 

Examples

Given a file packaged with the add-on at “beasts/frog.html”, get the full URL like this:

let fullURL = browser.extension.getURL("beasts/frog.html");

// -> something like:
// moz-extension://2c127fa4-62c7-7e4f-90e5-472b45eecfdc/beasts/frog.html

{{WebExtExamples}} 

[!NOTE] This API is based on Chromium’s chrome.extension API. This documentation is derived from extension.json in the Chromium code.

In this article

View on MDN