40 lines
1.6 KiB
HTML
40 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Always Kill Sticky - Options</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel='stylesheet' type='text/css' href='options.css' />
|
|
<link rel="shortcut icon" type="image/png" href="images/ASK32.png" />
|
|
</head>
|
|
<body>
|
|
<h1>Always Kill Sticky</h1>
|
|
<form>
|
|
<span class='mode-select-container'>
|
|
<span class='blacklist-mode-label'>Blacklist mode</span>
|
|
<input type='checkbox' id='whitelist-mode'></input>
|
|
<span class='whitelist-mode-label'>Whitelist mode</span>
|
|
</span>
|
|
<span class='buttons'>
|
|
<button disabled type='button' class='reset-button'>Reset</button>
|
|
<button disabled type='button' class='save-button'>Save</button>
|
|
</span>
|
|
</form>
|
|
<div id='matchingPatterns'>
|
|
<h2>Matching patterns</h2>
|
|
<p>Kill stickies on web page URLs matching the following <a href='https://regexr.com/' rel='nofollow'>regular expressions</a> (one per line):</p>
|
|
<div class='textarea-container'>
|
|
<textarea spellcheck="false"></textarea>
|
|
</div>
|
|
</div>
|
|
<div id='exclusionPatterns'>
|
|
<h2>Exclusion patterns</h2>
|
|
<p>Do <strong>not</strong> kill stickies on web page URLs matching the following <a href='https://regexr.com/' rel='nofollow'>regular expressions</a> (one per line):</p>
|
|
<div class='textarea-container'>
|
|
<textarea spellcheck="false"></textarea>
|
|
</div>
|
|
</div>
|
|
<p>NOTE: Exclusion patterns override matching patterns; if a page is <em>both</em> matched <em>and</em> excluded, stickies will <strong>not</strong> be killed on that page.</p>
|
|
</body>
|
|
<script src="functions.js"></script>
|
|
<script src="options.js"></script>
|
|
</html> |