Warning: This function is deprecated. Please use runtime.getURL
.
Converts a relative path within an extension's install directory to a fully-qualified URL.
Warning: This function is deprecated. Please use runtime.getURL
.
Converts a relative path within an extension's install directory to a fully-qualified URL.
browser.extension.getURL(
path // string
)
path
string
. A path to a resource within an extension expressed relative to its install directory.
string
. The fully-qualified URL to the resource.
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
getURL |
Yes | 14 | 45 | ? | Yes | 14 | ? | ? | 48 | ? | 15 | ? |
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
Note: This API is based on Chromium's chrome.extension
API. This documentation is derived from extension.json
in the Chromium code.
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/extension/getURL