Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

options.html 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Always Kill Sticky - Options</title>
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <link rel='stylesheet' type='text/css' href='options.css' />
  7. <link rel="shortcut icon" type="image/png" href="images/ASK32.png" />
  8. </head>
  9. <body>
  10. <h1>Always Kill Sticky</h1>
  11. <form>
  12. <span class='mode-select-container'>
  13. <span class='blacklist-mode-label'>Blacklist mode</span>
  14. <input type='checkbox' id='whitelist-mode'></input>
  15. <span class='whitelist-mode-label'>Whitelist mode</span>
  16. </span>
  17. <span class='buttons'>
  18. <button disabled type='button' class='reset-button'>Reset</button>
  19. <button disabled type='button' class='save-button'>Save</button>
  20. </span>
  21. </form>
  22. <div id='matchingPatterns'>
  23. <h2>Matching patterns</h2>
  24. <p>Kill stickies on web page URLs matching the following <a href='https://regexr.com/' rel='nofollow'>regular expressions</a> (one per line):</p>
  25. <div class='textarea-container'>
  26. <textarea spellcheck="false"></textarea>
  27. </div>
  28. </div>
  29. <div id='exclusionPatterns'>
  30. <h2>Exclusion patterns</h2>
  31. <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>
  32. <div class='textarea-container'>
  33. <textarea spellcheck="false"></textarea>
  34. </div>
  35. </div>
  36. <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>
  37. </body>
  38. <script src="functions.js"></script>
  39. <script src="options.js"></script>
  40. </html>