Filter .data-g elements from Google re-ordering

pull/765/head
Kevin Payravi 2024-07-24 04:25:19 -07:00
parent 7e1beaa21c
commit 1c6efc0860
1 changed files with 1 additions and 1 deletions

View File

@ -551,7 +551,7 @@ function startFiltering(searchEngine, storage, mutations = null, observer = null
async function reorderGoogle() {
let searchResults = document.querySelectorAll("div[data-hveid] a:first-of-type:not([role='button']):not([target='_self'])");
// Remove any matches that are not "standard" search results - this could've been done with :has() but limited browser support right now
searchResults = Array.from(searchResults).filter((e) => !e.closest('g-section-with-header, div[aria-expanded], div[data-q], div[data-minw], div[data-num-cols], div[data-docid], div[data-lpage]'));
searchResults = Array.from(searchResults).filter((e) => !e.closest('g-section-with-header, div[aria-expanded], div[data-q], div[data-g], div[data-minw], div[data-num-cols], div[data-docid], div[data-lpage]'));
return await reorderSearchResults(searchResults, 'google', storage);
}