summaryrefslogtreecommitdiff
path: root/searx/plugins/__init__.py
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarIT.de>2021-09-12 07:53:09 +0000
committerGitHub <noreply@github.com>2021-09-12 07:53:09 +0000
commitecd6ca86d0ebe6a41902e8c980de46c5d0600eb6 (patch)
tree157b41a60e69268d65d54f870b52399a701f5d64 /searx/plugins/__init__.py
parent2de95af92330c83c7b1aecc146e0f52e8825c59b (diff)
parent0f43b39eac44d548143b3944a2bfa26c039b2068 (diff)
Merge pull request #308 from dalf/plugin_hostname_replace
[enh] add hostname_replace plugin
Diffstat (limited to 'searx/plugins/__init__.py')
-rw-r--r--searx/plugins/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/searx/plugins/__init__.py b/searx/plugins/__init__.py
index 3a35f7025..1153c9ed1 100644
--- a/searx/plugins/__init__.py
+++ b/searx/plugins/__init__.py
@@ -31,6 +31,7 @@ from searx.plugins import (oa_doi_rewrite,
hash_plugin,
infinite_scroll,
self_info,
+ hostname_replace,
search_on_category_select,
tracker_url_remover,
vim_hotkeys)
@@ -182,6 +183,7 @@ plugins.register(oa_doi_rewrite)
plugins.register(hash_plugin)
plugins.register(infinite_scroll)
plugins.register(self_info)
+plugins.register(hostname_replace)
plugins.register(search_on_category_select)
plugins.register(tracker_url_remover)
plugins.register(vim_hotkeys)