()
| 792 | } |
| 793 | |
| 794 | function updateMatches() { |
| 795 | const matchCount = document.querySelectorAll('.sf-info-item:not([style*="display: none"])').length |
| 796 | const allCount = document.querySelectorAll('.sf-info-item').length |
| 797 | document.querySelector('.sf-match-count').innerText = matchCount === allCount ? matchCount : `${matchCount}/${allCount}` |
| 798 | } |
| 799 | |
| 800 | function main() { |
| 801 | if (window.self !== window.top) { |
no outgoing calls
no test coverage detected