bypass-paywalls-chrome-clean/options/options_custom.html

77 lines
3.0 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
2020-11-05 13:19:22 -08:00
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bypass Paywalls Clean Options Custom</title>
<style>
#bypass_sites label, #add_site label {
display: block;
}
body {
font-size: 100%;
}
2020-11-05 13:19:22 -08:00
* {
box-sizing: border-box;
}
</style>
</head>
<body>
2020-03-15 01:28:50 -07:00
<h2>Custom Sites</h2>
<div style="width:90%;">
2021-10-17 12:14:29 -07:00
To add a new site, enter an unique title/domain (without www.).<br>
Select options for useragent (like Googlebot), set referer (ignored when Googlebot is set), set random ip-address, block Javascript, block regular expression, unhide text on (or when paywall(selector) redirect to) amp-page and/or load text from json or Google webcache (paywall|article selector).<br>
2021-11-04 10:49:56 -07:00
Custom sites (new) are enabled automatically in <small><button><a href="options.html" style="text-decoration:none;color:inherit">Options</a></button></small> (cookies will be removed by default unless you enable allow_cookies).<br>
If you want to use custom sites (for non-listed sites) enable it in <small><button><a href="optin/opt-in.html" style="text-decoration:none;color:inherit">Opt-in</a></button></small>
<strong>Custom sites enabled: <span id="custom-enabled"></span></strong><br>
You can also just request permissions for the custom sites you added yourself & post-release added sites (below).
<br><br>
</div>
<div id='add_site'></div>
<br>
<div id="status_add"></div>
<span style='float:left;padding-bottom:5px'>
<button id="add">Add</button>
2020-03-15 01:28:50 -07:00
</span>
<div style="clear:both;"></div>
<div>
2020-03-15 01:28:50 -07:00
<h3>List of custom sites</h3>
* already in default list (double domain)
<br>
</div>
<div id='custom_sites'></div>
<br>
<div id="status_delete"></div>
<span style='float:left;padding-bottom:5px'>
<button id="delete">Delete</button>
2020-08-18 11:18:57 -07:00
<button id="edit">Edit (re-Add)</button>
<button id="perm_request">Request<br>permissions</button>
<button id="perm_remove">Remove<br>permissions</button><br>
permissions granted (for all in custom list + updated): <strong><span id="perm-custom"></span></strong>
2020-03-15 01:28:50 -07:00
</span>
<div style="clear:both;"></div>
<div style="width:90%;">
2020-03-15 01:28:50 -07:00
<h3>Json file</h3>
2020-04-11 10:38:45 -07:00
You can edit/sort the text area and save (only when json-text is valid).
Clear & save to reset. You can also export/import json-text for new installations.
</div>
<br>
<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>
2020-04-11 10:38:45 -07:00
<button id="sort">Sort</button>
<button id="export">Export</button>
<button id="import">Import file</button>
<button id="import_gitlab">Import from GitLab</button>
<input type="file" id="importInput" accept=".txt" style="display:none"/>
2020-03-15 02:10:12 -07:00
<button><a href="options.html" style="text-decoration:none;color:inherit">Options</a></button>
</span>
2020-03-15 01:28:50 -07:00
2021-03-27 00:30:39 -07:00
<script src="../sites.js"></script>
<script src="options_custom.js"></script>
</body>
</html>