management.install()
语法
js
browser.management.install(options)
参数
- options
-
一个对象,其中包含 addons.mozilla.org 上主题的 XPI 文件的 URL,以及可选的 XPI 文件的哈希值(使用 sha256 或更强的哈希算法)。
返回值
一个Promise,它将使用一个包含在 manifest.json 中为主题定义的ExtensionID
的对象来完成。
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。
示例
循环遍历主题列表
js
"use strict";
const themes = [
"https://addons.mozilla.org/firefox/downloads/file/1063216/insightscare-1.0-fx.xpi",
"https://addons.mozilla.org/firefox/downloads/file/1063419/orange_roses-1.0-fx.xpi",
"https://addons.mozilla.org/firefox/downloads/file/1062647/sticktoyourguns-2.0-fx.xpi",
"https://addons.mozilla.org/firefox/downloads/file/0/bad_url.xpi",
];
let current;
async function install(url) {
try {
current = url;
const { id } = await browser.management.install({ url });
console.log(`Theme installed: ${id}`);
} catch (e) {
console.error(`Installation failed: ${e}`);
}
}
browser.browserAction.onClicked.addListener(() => {
const id = themes.indexOf(current);
install(themes[(id + 1) % themes.length]);
});
for (const url of themes) {
browser.menus.create({
title: url,
onclick: () => install(url),
contexts: ["browser_action"],
});
}