bypass-paywalls-firefox-clean/options.html
magnolia1234 7e28649506 Update custom sites UI (export/import)
Import custom sites only works from add-ons screen (via icon/popup gives CSP-error).
Plus some cosmetic updates in options.
2020-03-08 19:45:19 +01:00

41 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Bypass Paywalls Clean Options</title>
<style>
#bypass_sites label {
display: block;
}
body {
width:350px;
height:600px;
}
</style>
</head>
<body>
<h1>Options | <small><span id="version"></span><span id="version_new"></span></small></h1>
<div>
Selected sites will have their cookies cleared and referer set to Google. You should
uncheck sites you have an account with or else you will be logged out at every visit.
Add your <a href="options_custom.html">custom sites</a>.
</div>
<br/>
<div style='float:right'><a href="#save">to save-button</a></div>
<div style="clear:both;"></div>
<div id='bypass_sites'></div>
<br/>
<div id="status"></div>
<div id="error"></div>
<span style='float:left;padding-bottom:50px'>
<button id="save">Save</button>
</span>
<span style='float:right;padding-bottom:50px'>
<button id="select-all">Select all</button>
<button id="select-none">Select none</button>
</span>
<script src="sites.js"></script>
<script src="options.js"></script>
<script src="version.js"></script>
</body>
</html>