Extends DuckDuckGo by adding a customizable list of additional search engines for making fast searches from other engines.
< 脚本DuckDuckMenu的反馈
Very helpful script, just one small issue
You are using escape() for encoding search terms, as it is seen in
escape()
escape(document.getElementById("search_form_input").value)
It actually outputs ill-encoded strings for non-English terms. Also escape() is already depreciated. Using encodeURIComponent() instead will solve these problems.
encodeURIComponent()
登录(不可用)以发表回复。
土豆服务器,请按需使用
镜像地址随时可能被墙,建议加群获取最新地址
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址
Very helpful script, just one small issue
You are using
escape()
for encoding search terms, as it is seen inIt actually outputs ill-encoded strings for non-English terms. Also
escape()
is already depreciated. UsingencodeURIComponent()
instead will solve these problems.