thomasleplus / bookmarklets

Browser bookmarklets.
Apache License 2.0
25 stars 4 forks source link

Add and update this rare bookmarklet that let us to search directly in wikipedia please #53

Closed trimechee closed 1 month ago

trimechee commented 1 month ago

Feature description

Hi, many times when we search something, google displays wikipedia page in results serach, and wikipedia is the most interesting site to make research so to make operation more quickly easily, we hope please the add and update the code of this rare bookmarklet taht let us to search directly in wikipedia site, thank you ! 

wikipedia search bookmarklet :

javascript:(function(document) {
function se(d) {
    return d.selection ? d.selection.createRange(1).text : d.getSelection(1);
}; 
let d = se(document); 
for (i=0; i<frames.length && (d==document || d=='document'); i++) d = se(frames[i].document); 
if (d=='document') d = prompt('Enter%20search%20terms%20for%20Wikipedia',''); 
open('https://en.wikipedia.org' + (d ? '/w/index.php?title=Special:Search&search=' + encodeURIComponent(d) : '')).focus();
})(document);

Anything else?

No response

thomasleplus commented 1 month ago

Hi @trimechee,

I like the idea but the way I implemented it is to search for the current text selection instead of having a popup asking for the user to input the search terms. I fill like if the user is going to type the search query, (s)he might as well bookmark the Wikipedia homepage and type there search in the box there don't you think? No need for a bookmarklet to do that.

Please see the details here.

Cheers,

Tom

trimechee commented 1 month ago

Great! Thank you very much!

because wikipedia bookmarklet is very important for me, because 3 years ago, I started watching a lot of anime from sites like voiranime com, french-anime com, vostfree ws and from many other streaming sites but I felt lost because a same anime for example naruto, gundam, bleach.....have several seasons with different season names and I have to respect the chronology and start by watching the first seasons, so the wikipedia bookmarklet allows me to quickly see the anime's page on wikipedia and see all the release dates of the seasons in chronological order....

Thank you very much for adding this vital bookmarklet ti search in wikiedia and various websites :)

i close the issue :)