feat: use duckduckgo onion address if site is .onion

This commit is contained in:
MDLeom 2020-03-06 08:47:37 +00:00
parent 0e2799edbf
commit a3739cf6de
No known key found for this signature in database
GPG Key ID: 5D9DB57A25D34EE3
1 changed files with 9 additions and 0 deletions

View File

@ -6,3 +6,12 @@ document.getElementById('searchClick').addEventListener('click', () => {
document.getElementById('searchClickMob').addEventListener('click', () => {
searchFormMob.submit()
}, false)
// Use duckduckgo's onion address when the site is accessed via .onion
if (document.location.hostname.endsWith('.onion')) {
const searchForms = document.querySelectorAll('form#searchForm, form#searchFormMob')
searchForms.forEach((form) => {
form.setAttribute('action', 'https://3g2upl4pq6kufc4m.onion/')
})
}