Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

options.html 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. </head>
  8. <body>
  9. <h1>Always Kill Sticky</h1>
  10. <form>
  11. <span class='mode-select-container'>
  12. <span class='blacklist-mode-label'>Blacklist mode</span>
  13. <input type='checkbox' id='whitelist-mode'></input>
  14. <span class='whitelist-mode-label'>Whitelist mode</span>
  15. </span>
  16. <span class='buttons'>
  17. <button disabled type='button' class='reset-button'>Reset</button>
  18. <button disabled type='button' class='save-button'>Save</button>
  19. </span>
  20. </form>
  21. <div id='matchingPatterns'>
  22. <h2>Matching patterns</h2>
  23. <p>Kill stickies on web page URLs matching the following <a href='https://regexr.com/' rel='nofollow'>regular expressions</a> (one per line):</p>
  24. <div class='textarea-container'>
  25. <textarea spellcheck="false"></textarea>
  26. </div>
  27. </div>
  28. <div id='exclusionPatterns'>
  29. <h2>Exclusion patterns</h2>
  30. <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>
  31. <div class='textarea-container'>
  32. <textarea spellcheck="false"></textarea>
  33. </div>
  34. </div>
  35. <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>
  36. </body>
  37. <script src="functions.js"></script>
  38. <script src="options.js"></script>
  39. </html>