2020-02-28 15:23:17 +00:00
<!DOCTYPE html>
< html >
< head >
< meta charset = "utf-8" >
2020-11-05 21:21:41 +00:00
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2020-02-28 15:23:17 +00:00
< title > Bypass Paywalls Clean Options Custom< / title >
< style >
#bypass_sites label, #add_site label {
display: block;
}
body {
2020-11-04 16:41:48 +00:00
font-size: 100%;
2020-02-28 15:23:17 +00:00
}
2020-11-05 21:21:41 +00:00
* {
box-sizing: border-box;
}
2020-02-28 15:23:17 +00:00
< / style >
< / head >
< body >
2020-03-15 09:17:24 +00:00
< h2 > Custom Sites< / h2 >
2020-03-17 11:16:32 +00:00
< div style = "width:90%;" >
2021-06-22 19:54:00 +00:00
To add a new site, enter an unique title/domain (without www.), select options for useragent (like Googlebot)/block Javascript (block on (sub)domain(s) of site and/or external domains) and/or set referer (ignored when Googlebot is set).< br >
2021-09-27 14:31:46 +00:00
Custom sites 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; cookie settings for default sites are ignored).< br >
2021-04-29 17:35:59 +00:00
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 (below).< br >
On Android: to enable custom sites you need the 'custom' add-on version (with access to all sites): < a href = "https://addons.mozilla.org/en-US/firefox/addon/bypass-paywalls-clean-custom" target = "_blank" > Bypass Paywalls Clean (custom)< / a >
2020-10-13 15:11:35 +00:00
< br > < br >
2020-02-28 15:23:17 +00:00
< / div >
< div id = 'add_site' > < / div >
2020-10-13 15:11:35 +00:00
< br >
2020-03-12 18:27:19 +00:00
< div id = "status_add" > < / div >
2020-08-20 17:01:12 +00:00
< span style = 'float:left;padding-bottom:5px' >
2020-02-28 15:23:17 +00:00
< button id = "add" > Add< / button >
2020-03-15 09:17:24 +00:00
< / span >
2020-02-28 15:23:17 +00:00
< div style = "clear:both;" > < / div >
2020-03-02 17:36:11 +00:00
< div >
2020-03-15 09:17:24 +00:00
< h3 > List of custom sites< / h3 >
2020-08-20 17:01:12 +00:00
* already in default list (double domain)
2020-10-13 15:11:35 +00:00
< br >
2020-03-02 17:36:11 +00:00
< / div >
< div id = 'custom_sites' > < / div >
2020-10-13 15:11:35 +00:00
< br >
2020-03-12 18:27:19 +00:00
< div id = "status_delete" > < / div >
2020-08-20 17:01:12 +00:00
< span style = 'float:left;padding-bottom:5px' >
2020-03-02 17:36:11 +00:00
< button id = "delete" > Delete< / button >
2020-08-18 18:19:15 +00:00
< button id = "edit" > Edit (re-Add)< / button >
2021-04-29 17:35:59 +00:00
< button id = "perm_request" > Request< br > permissions< / button >
2021-05-01 09:22:06 +00:00
< button id = "perm_remove" > Remove< br > permissions< / button > < br >
2021-04-29 17:35:59 +00:00
permissions granted (for all in custom list): < strong > < span id = "perm-custom" > < / span > < / strong >
2020-03-15 09:17:24 +00:00
< / span >
2020-03-02 17:36:11 +00:00
< div style = "clear:both;" > < / div >
2020-03-17 11:16:32 +00:00
< div style = "width:90%;" >
2020-03-15 09:17:24 +00:00
< h3 > Json file< / h3 >
2020-04-11 17:40:12 +00:00
You can edit/sort the text area and save (only when json-text is valid).
2020-03-15 09:17:24 +00:00
Clear & save to reset. You can also export/import json-text for new installations.
2020-02-28 15:23:17 +00:00
< / div >
2020-10-13 15:11:35 +00:00
< br >
2020-02-28 15:23:17 +00:00
< div id = 'bypass_sites' > < / div >
2020-10-13 15:11:35 +00:00
< br >
2020-02-28 15:23:17 +00:00
< div id = "status" > < / div >
< div id = "error" > < / div >
2020-03-17 11:16:32 +00:00
< span style = 'float:left;padding-bottom:50px' >
2020-02-28 15:23:17 +00:00
< button id = "save" > Save< / button >
2020-04-11 17:40:12 +00:00
< button id = "sort" > Sort< / button >
2020-03-08 18:45:19 +00:00
< button id = "export" > Export< / button >
< button id = "import" > Import< / button >
< input type = "file" id = "importInput" accept = ".txt" style = "display:none" / >
2020-03-15 09:17:24 +00:00
< button > < a href = "options.html" style = "text-decoration:none;color:inherit" > Options< / a > < / button >
2020-02-28 15:23:17 +00:00
< / span >
2020-03-15 09:17:24 +00:00
2021-03-27 07:31:03 +00:00
< script src = "../sites.js" > < / script >
2020-02-28 15:23:17 +00:00
< script src = "options_custom.js" > < / script >
< / body >
< / html >