71 lines
2.4 KiB
HTML
71 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Popup</title>
|
|
<link href="popup.css" rel="stylesheet">
|
|
<script type="module" src="popup.js"></script>
|
|
</head>
|
|
<body>
|
|
<article>
|
|
<section>
|
|
<h1 data-i18n="extensionName"><img src="../image/icon.svg" alt=""> </h1>
|
|
|
|
<div class="list">
|
|
<label class="pattern not-basic">
|
|
<span class="flag"><img src="../image/power.svg" alt=""></span>
|
|
<span class="title" data-i18n="proxyByPatterns"></span>
|
|
<input type="radio" name="server" value="pattern">
|
|
</label>
|
|
|
|
<label class="disable">
|
|
<span class="flag"><img class="off" src="../image/power.svg" alt=""></span>
|
|
<span class="title" data-i18n="disable"></span>
|
|
<input type="radio" name="server" value="disable" checked>
|
|
</label>
|
|
</div>
|
|
|
|
<details>
|
|
<summary data-i18n="more"></summary>
|
|
<div class="host">
|
|
<input type="text" class="filter" autocomplete="off" spellcheck="false" placeholder="filter">
|
|
|
|
<select id="tabProxy" class="firefox tab-proxy">
|
|
<option value="" data-i18n="tabProxy" disabled selected></option>
|
|
<option value=""> </option>
|
|
</select>
|
|
|
|
<select id="includeHost" class="local http not-basic">
|
|
<option value="" data-i18n="includeHost" disabled selected></option>
|
|
</select>
|
|
|
|
<select id="excludeHost" class="local http not-basic">
|
|
<option value="" data-i18n="excludeHost" disabled selected></option>
|
|
</select>
|
|
</div>
|
|
</details>
|
|
|
|
<div class="popup-buttons">
|
|
<button type="button" data-i18n="options"></button>
|
|
<button type="button" data-i18n="log"></button>
|
|
<button type="button" data-i18n="ip"></button>
|
|
<button type="button" data-i18n="location"></button>
|
|
</div>
|
|
|
|
|
|
<!-- template -->
|
|
<template>
|
|
<label>
|
|
<span class="flag"></span>
|
|
<span class="title"></span>
|
|
<span class="port"></span>
|
|
<input type="radio" name="server">
|
|
<span class="data"></span>
|
|
</label>
|
|
</template>
|
|
<!-- /template -->
|
|
</section>
|
|
</article>
|
|
</body>
|
|
</html> |