diff options
author | ManeraKai <manerakai@protonmail.com> | 2022-02-04 18:48:24 +0300 |
---|---|---|
committer | ManeraKai <manerakai@protonmail.com> | 2022-02-04 18:48:24 +0300 |
commit | a9f95b3d1de44edf205508233a3526246842bbf3 (patch) | |
tree | a273532e131ae36cee2a200c953d015c3fa36bff /src/pages/options/general.html | |
parent | Added Piped, cleaned code (diff) | |
download | libredirect-a9f95b3d1de44edf205508233a3526246842bbf3.zip |
Cleaning and refining settings
Diffstat (limited to 'src/pages/options/general.html')
-rw-r--r-- | src/pages/options/general.html | 106 |
1 files changed, 0 insertions, 106 deletions
diff --git a/src/pages/options/general.html b/src/pages/options/general.html deleted file mode 100644 index 507e65c3..00000000 --- a/src/pages/options/general.html +++ /dev/null @@ -1,106 +0,0 @@ -<!DOCTYPE html> -<html> - -<head> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width, initial-scale=1" /> - <link href="../stylesheets/styles.css" rel="stylesheet" /> - <title>LibRedirect Options</title> -</head> - -<body class="option"> - - <section class="links"> - <a href="general.html" class="selected">General</a> - <a href="youtube.html">Youtube</a> - <a href="twitter.html">Twitter</a> - <a href="instagram.html">Instagram</a> - <a href="reddit.html">Reddit</a> - <a href="search.html">Search</a> - <a href="translate.html">Translate</a> - <a href="maps.html">Maps</a> - <a href="wikipedia.html" >Wikipedia</a> - <a href="medium.html">Medium</a> - </section> - - - <section class="option-block"> - <div class="some-block option-block"> - <h4>Theme</h4> - <select id="theme"> - <option value="">System</option> - <option value="light-theme">Light</option> - <option value="dark-theme">Dark</option> - </select> - </div> - <div class="buttons buttons-inline"> - <a class="button button-inline" id="update-instances"> - <span>Update Instances</span> - </a> - </div> - <hr> - <section class="settings-block"> - <p data-localise="__MSG_exceptionsDescriptionP1__"> - Enter a URL or Regular Expression to be excluded from redirects. - </p> - <p data-localise="__MSG_exceptionsDescriptionP2__"> - All requests for or initiating from a URL that matches your exception - will be excluded from redirects. - </p> - <p data-localise="__MSG_exceptionsDescriptionP3__"> - Note - Supports JavaScript regular expressions, excluding the - enclosing forward slashes. - </p> - </section> - <section class="settings-block"> - <table class="exceptions option"> - <tbody> - <tr> - <td> - <h1 data-localise="__MSG_addException__">Add Exception</h1> - </td> - </tr> - <tr> - <td> - <input id="new-exceptions-item" type="text" placeholder="URL or RegExp" /> - </td> - <td> - <input type="radio" id="url" name="type" value="URL" checked /> - <label class="radio" for="url">URL</label> - <input type="radio" id="regExp" name="type" value="RegExp" /> - <label class="radio" for="regExp">RegExp</label> - </td> - <td> - <button id="add-to-exceptions"> - <svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"> - <line x1="256" y1="112" x2="256" y2="400" style=" - fill: none; - stroke: #fff; - stroke-linecap: round; - stroke-linejoin: round; - stroke-width: 32px; - " /> - <line x1="400" y1="256" x2="112" y2="256" style=" - fill: none; - stroke: #fff; - stroke-linecap: round; - stroke-linejoin: round; - stroke-width: 32px; - " /> - </svg> - </button> - </td> - </tr> - </tbody> - </table> - </section> - <ul id="exceptions-items"></ul> - </section> - - - <script type="module" src="./general.js"></script> - <script type="module" src="./init.js"></script> - <script src="../../assets/javascripts/localise.js"></script> -</body> - -</html> \ No newline at end of file |