Capitalization fixes
parent
b1814277e9
commit
81e6b2dcb1
|
@ -28,7 +28,7 @@ Large, corporate-run wiki farms have enabled hundreds of great wikis and communi
|
|||
|
||||
When visiting a wiki on a large corporate wiki farm such as Fandom, Indie Wiki Buddy will notify and/or automatically redirect you if a quality, independent alternative is available. You can customize your experience per-wiki.
|
||||
|
||||
In addition, search results in Google, Bing, DuckDuckGo, Brave Search, Ecosia, and StartPage can also be filtered, replacing non-independent wikis with text inviting you to visit the independent counterpart.
|
||||
In addition, search results in Google, Bing, DuckDuckGo, Brave Search, Ecosia, and Startpage can also be filtered, replacing non-independent wikis with text inviting you to visit the independent counterpart.
|
||||
|
||||
Indie Wiki Buddy also supports [BreezeWiki](https://breezewiki.com/), a service that renders Fandom wikis without ads or bloat. This helps give you a more enjoyable reading experience on Fandom when an independent wiki isn't available.
|
||||
|
||||
|
|
|
@ -514,20 +514,20 @@ function main(mutations = null, observer = null) {
|
|||
});
|
||||
}
|
||||
} else if (currentURL.hostname.includes('startpage.com')) {
|
||||
// Check if doing a StartPage search:
|
||||
function filterStartPage() {
|
||||
// Check if doing a Startpage search:
|
||||
function filterStartpage() {
|
||||
let searchResults = Array.from(document.querySelectorAll("a.result-link")).filter(el => el.href.includes('fandom.com') || el.href.includes('fextralife.com'));
|
||||
filterSearchResults(searchResults, 'startpage', storage);
|
||||
}
|
||||
// Need to wait for document to be ready
|
||||
if (document.readyState === 'complete') {
|
||||
addLocationObserver(main);
|
||||
filterStartPage();
|
||||
filterStartpage();
|
||||
} else {
|
||||
document.addEventListener('readystatechange', e => {
|
||||
if (document.readyState === 'complete') {
|
||||
addLocationObserver(main);
|
||||
filterStartPage();
|
||||
filterStartpage();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
@ -90,7 +90,7 @@
|
|||
Indie Wiki Buddy provides a suite of features to help you discover independent wikis and improve your general wiki reading experience.
|
||||
<br /><br />
|
||||
When you visit a wiki on a large, corporate-run wiki host, this extension can notify or automatically redirect you to quality independent wikis when they're available.
|
||||
Search results in Google, Bing, DuckDuckGo, Brave Search, Ecosia, and StartPage can also be filtered, replacing non-independent wikis with text inviting you to visit the independent counterpart.
|
||||
Search results in Google, Bing, DuckDuckGo, Brave Search, Ecosia, and Startpage can also be filtered, replacing non-independent wikis with text inviting you to visit the independent counterpart.
|
||||
<br /><br />
|
||||
We currently redirect from Fandom and Fextralife wikis to independent counterparts.
|
||||
<br /><br />
|
||||
|
@ -130,7 +130,7 @@
|
|||
This is on by default.
|
||||
<br />
|
||||
<br />
|
||||
Currently, Google, Bing, DuckDuckGo, Brave Search, Ecosia, and StartPage are supported.
|
||||
Currently, Google, Bing, DuckDuckGo, Brave Search, Ecosia, and Startpage are supported.
|
||||
Note that image results are not filtered;
|
||||
we don't want users to miss out on images they might not find elsewhere!
|
||||
<br />
|
||||
|
|
Loading…
Reference in New Issue