|
3 | 3 | <head> |
4 | 4 | <meta charset="utf-8"> |
5 | 5 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
6 | | - <meta name="google-site-verification" content="lHnx1da1HDG8GdJsF8kVUQLEwOoPD5k5wfWTtEwhYAs" /> |
| 6 | + <meta name="google-site-verification" content="lHnx1da1HDG8GdJsF8kVUQLEwOoPD5k5wfWTtEwhYAs"> |
7 | 7 | <meta name="description" content="A clean, intuitive browser extension that gives you one-click access to all your bookmarks, reading lists, browsing history, and tab groups on the new tab page."> |
8 | 8 | <meta name="author" content="Gelencsér Gergő"> |
9 | 9 | <title>Quick Access</title> |
|
12 | 12 | <link rel="icon" href="icon-48.png" sizes="48x48" type="image/png"> |
13 | 13 | <link href="bootstrap.min.css" rel="stylesheet"> |
14 | 14 | <style> |
15 | | - [role="dialog"]::backdrop { |
| 15 | + dialog::backdrop { |
16 | 16 | backdrop-filter: blur(5px); |
17 | 17 | opacity: 0; |
18 | 18 | background: rgba(0, 0, 0, 0.35); |
19 | 19 | transition: display 0.1s allow-discrete, overlay 0.1s allow-discrete, opacity 0.1s; |
20 | 20 | } |
21 | | - [role="dialog"][open]::backdrop { |
| 21 | + dialog[open]::backdrop { |
22 | 22 | opacity: 1; |
23 | 23 | } |
24 | 24 | </style> |
@@ -170,7 +170,7 @@ <h2 class="pb-2 border-bottom">Features</h2> |
170 | 170 | <path fill-rule="evenodd" d="M16 8a8 8 0 0 1-7.022 7.94l1.902-7.098a3 3 0 0 0 .05-1.492A3 3 0 0 0 10.237 6h5.511A8 8 0 0 1 16 8M0 8a8 8 0 0 0 7.927 8l1.426-5.321a3 3 0 0 1-.723.255 3 3 0 0 1-1.743-.147 3 3 0 0 1-1.043-.7L.633 4.876A8 8 0 0 0 0 8m5.004-.167L1.108 3.936A8.003 8.003 0 0 1 15.418 5H8.066a3 3 0 0 0-1.252.243 2.99 2.99 0 0 0-1.81 2.59M8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4"/> |
171 | 171 | </svg> |
172 | 172 | <div> |
173 | | - <p>Works in Chrome, Edge, Brave, Opera, Vivaldi, ...</p> |
| 173 | + <p>Works in Firefox, Chrome, Edge, Opera, Brave, Vivaldi, ...</p> |
174 | 174 | </div> |
175 | 175 | </div> |
176 | 176 | </div> |
@@ -217,7 +217,7 @@ <h3 class="pt-5 mt-5 mb-4 display-6 lh-1 fw-bold"></h3> |
217 | 217 | </div> |
218 | 218 | </div> |
219 | 219 |
|
220 | | - <dialog id="modal" class="position-fixed border-0 p-0 mx-5 rounded-3 shadow-lg" role="dialog"> |
| 220 | + <dialog id="modal" class="position-fixed border-0 p-0 mx-5 rounded-3 shadow-lg" role="dialog" aria-modal="true"> |
221 | 221 | <button type="button" class="btn-close position-absolute" style="top: 5px; right: 5px; width: 37px; height: 37px; z-index: 999; opacity: 0.7; background-color: white;" autofocus aria-label="close"></button> |
222 | 222 | <div id="galery" class="carousel carousel-fade slide" data-bs-ride="carousel"> |
223 | 223 | <div class="carousel-indicators"> |
@@ -306,12 +306,12 @@ <h3 class="pt-5 mt-5 mb-4 display-6 lh-1 fw-bold"></h3> |
306 | 306 |
|
307 | 307 | function getBrowser() { |
308 | 308 | const agent = navigator.userAgent; |
309 | | - if ((agent.indexOf("Opera") || agent.indexOf('OPR')) != -1) return 'Opera'; |
| 309 | + if (agent.indexOf("Firefox") != -1) return 'Firefox'; |
| 310 | + if (agent.indexOf('OPR') != -1) return 'Opera'; |
| 311 | + if (agent.indexOf('Opera') != -1) return 'Opera'; |
310 | 312 | if (agent.indexOf("Edg") != -1) return 'Edge'; |
311 | | - if (agent.indexOf("Vivaldi") != -1) return 'Vivaldi'; |
312 | | - if (agent.indexOf("Brave") != -1) return 'Brave'; |
| 313 | + if (agent.indexOf("MSIE") != -1) return 'Edge'; |
313 | 314 | if (agent.indexOf("Chrome") != -1) return 'Chrome'; |
314 | | - if (agent.indexOf("Firefox") != -1) return 'Firefox'; |
315 | 315 | if (agent.indexOf("Safari") != -1) return 'Safari'; |
316 | 316 | return 'Browser'; |
317 | 317 | } |
|
0 commit comments