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()
Συνδεθείτε για να δημοσιεύσετε μια απάντηση.
注册一下就行
一年攒够 12 元
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.