Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

options.html 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. <style>
  7. html {
  8. box-sizing: border-box;
  9. font-size: 16px;
  10. }
  11. *, *::before, *::after {
  12. box-sizing: inherit;
  13. }
  14. body {
  15. margin: 0 auto;
  16. display: flex;
  17. flex-flow: column;
  18. max-width: 640px;
  19. min-height: 100vh;
  20. padding: 10px;
  21. font-size: 1rem;
  22. }
  23. textarea {
  24. min-height: 400px;
  25. border: 1px solid #bbb;
  26. font-family: Inconsolata, Courier, monospace;
  27. font-size: 1.125rem;
  28. }
  29. form {
  30. text-align: right;
  31. }
  32. button {
  33. -webkit-appearance: none;
  34. -moz-appearance: none;
  35. border: 1px solid #99;
  36. font-size: 1.5rem;
  37. color: #fff;
  38. margin: 1em auto;
  39. padding: 10px 16px;
  40. background-color: #16e;
  41. cursor: default;
  42. }
  43. button:active {
  44. transform: scale(0.95);
  45. }
  46. button:focus:active {
  47. outline: none;
  48. }
  49. button:disabled {
  50. filter: saturate(0);
  51. opacity: 0.5;
  52. }
  53. </style>
  54. </head>
  55. <body>
  56. <h1>Always Kill Sticky</h1>
  57. <p>Enter a list of <a href='https://regexr.com/' rel='nofollow'>regular expression</a> patterns to match URLs, one per line. Stickies will be killed on pages matching those patterns.</p>
  58. <textarea spellcheck="false"></textarea>
  59. <form><button disabled type='button'>Save</button></form>
  60. </body>
  61. <script src="options.js"></script>
  62. </html>