diff options
| author | Ivan K. Boikov <mail@ikboikov.net> | 2025-01-29 15:21:09 +0100 |
|---|---|---|
| committer | root <root@ikboikov.net> | 2026-08-17 06:45:07 +0200 |
| commit | 62b48e78c5c8a6e88f7303bf4c8927c1838746ed (patch) | |
| tree | 871fbc37f81018baad04735dcc0ef4f11ad1dcfa /searx/plugins | |
| parent | 17cdd1755de611c105bfbe4da1468f2c66fcf289 (diff) | |
Plugins
Diffstat (limited to 'searx/plugins')
| -rw-r--r-- | searx/plugins/hostnames.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/searx/plugins/hostnames.py b/searx/plugins/hostnames.py index a59496946..77a07526f 100644 --- a/searx/plugins/hostnames.py +++ b/searx/plugins/hostnames.py @@ -106,6 +106,16 @@ REMOVE: set = set() HIGH: set = set() LOW: set = set() +name = gettext('Hostnames plugin') +description = gettext('Rewrite hostnames, remove results or prioritize them based on the hostname') +default_on = True +preference_section = 'general' + +plugin_id = 'hostnames' + +parsed = 'parsed_url' +_url_fields = ['iframe_src', 'audio_src'] + class SXNGPlugin(Plugin): """Rewrite hostnames, remove results or prioritize them.""" |
