mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 10:23:08 +09:00
19 lines
553 B
HTML
19 lines
553 B
HTML
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
/* globals InstallTrigger */
|
|
function install() {
|
|
InstallTrigger.install({
|
|
"Test Add-on": {
|
|
URL: "https://example.com/browser/toolkit/mozapps/extensions/test/xpinstall/amosigned.xpi"
|
|
}
|
|
});
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>Test page for the discovery pane</h1>
|
|
<p><a id="install-direct" href="https://example.com/browser/toolkit/mozapps/extensions/test/xpinstall/amosigned.xpi">Direct install</a></p>
|
|
<p><a id="install-js" href="javascript:install()">JS install</a></p>
|
|
</body>
|
|
</html>
|