Loading searx/plugins/__init__.py +7 −0 Original line number Diff line number Diff line Loading @@ -172,3 +172,10 @@ plugins.register(vim_hotkeys) # load external plugins if 'plugins' in settings: plugins.register(*settings['plugins'], external=True) if 'enabled_plugins' in settings: for plugin in plugins: if plugin.name in settings['enabled_plugins']: plugin.default_on = True else: plugin.default_on = False searx/settings.yml +6 −0 Original line number Diff line number Diff line Loading @@ -67,6 +67,12 @@ outgoing: # communication with search engines # - plugin2 # - ... # uncomment below section if you want to configure which plugin is enabled by default # # enabled_plugins: # - "HTTPS rewrite" # - ... engines: - name: apk mirror engine: apkmirror Loading Loading
searx/plugins/__init__.py +7 −0 Original line number Diff line number Diff line Loading @@ -172,3 +172,10 @@ plugins.register(vim_hotkeys) # load external plugins if 'plugins' in settings: plugins.register(*settings['plugins'], external=True) if 'enabled_plugins' in settings: for plugin in plugins: if plugin.name in settings['enabled_plugins']: plugin.default_on = True else: plugin.default_on = False
searx/settings.yml +6 −0 Original line number Diff line number Diff line Loading @@ -67,6 +67,12 @@ outgoing: # communication with search engines # - plugin2 # - ... # uncomment below section if you want to configure which plugin is enabled by default # # enabled_plugins: # - "HTTPS rewrite" # - ... engines: - name: apk mirror engine: apkmirror Loading