Movatterモバイル変換


[0]ホーム

URL:


MDN Web Docs

extension.getURL()

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

Syntax

js
browser.extension.getURL(  path // string)

Parameters

path

string. A path to a resource within an extension expressed relative to its install directory.

Return value

string. The fully-qualified URL to the resource.

Examples

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

js
let fullURL = browser.extension.getURL("beasts/frog.html");// -> something like:// moz-extension://2c127fa4-62c7-7e4f-90e5-472b45eecfdc/beasts/frog.html

Example extensions

Browser compatibility

Note:This API is based on Chromium'schrome.extension API. This documentation is derived fromextension.json in the Chromium code.

Help improve MDN

Learn how to contribute.

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp