()
| 318 | |
| 319 | // 标签页伪装为 Github(摸鱼) |
| 320 | function fish() { |
| 321 | window.document.title = 'GitHub' |
| 322 | if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) { |
| 323 | document.querySelector("link[rel*='shortcut icon']").href = 'https://github.githubassets.com/favicons/favicon-dark.png' |
| 324 | } else { |
| 325 | document.querySelector("link[rel*='shortcut icon']").href = 'https://github.githubassets.com/favicons/favicon.png' |
| 326 | } |
| 327 | } |
| 328 | |
| 329 | |
| 330 | // 链接转图片 |