34 lines
1.0 KiB
HTML
34 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<link rel="stylesheet" href="popup.css">
|
|
<script defer src="popup.build.js"></script>
|
|
</head>
|
|
|
|
<body x-data="popup">
|
|
<div class="profiles">
|
|
<label for="profile">Active Profile</label>
|
|
<div class="profile-buttons">
|
|
<select x-model.number="profileIndex" name="profile" id="profile">
|
|
<template x-for="(prof, index) in profileNames" :key="index">
|
|
<option x-text="prof" :value="index"></option>
|
|
</template>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="help">
|
|
<button @click='window.open("https://ursus.camp/nostore", "_blank")'>Get Help</button>
|
|
<button @click="await openOptions()">Advanced</button>
|
|
</div>
|
|
|
|
<div class="disclaimer">
|
|
No user data is collected or transmitted.
|
|
All private keys are stored in the extension's sequestered local browser storage.
|
|
</div>
|
|
</body>
|
|
|
|
</html> |