mirror of
https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean.git
synced 2024-11-06 09:20:31 +00:00
39 lines
831 B
HTML
39 lines
831 B
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>
|
|
<div>
|
|
Selected sites will have their cookies cleared and referer set to Google. You should
|
|
uncheck sites you are logged in to otherwise you will be logged out on every visit.
|
|
</div>
|
|
<br/>
|
|
<div id='bypass_sites'>
|
|
</div>
|
|
<br/>
|
|
<div id="status"></div>
|
|
<div id="error"></div>
|
|
<br/>
|
|
<span style='float:left;'>
|
|
<button id="save">Save</button>
|
|
</span>
|
|
<span style='float:right;'>
|
|
<button id="select-all">Select all</button>
|
|
<button id="select-none">Select none</button>
|
|
</span>
|
|
<br/><br/>
|
|
<script src="options.js"></script>
|
|
</body>
|
|
</html>
|