zjg121 发表于 2024-4-9 18:08

javascript四个搜索引擎一起帮你搜索

本帖最后由 zjg121 于 2024-4-12 10:11 编辑

省CB的方法来了!
电子书经常在网盘共享,想找电子书,优先在网盘资源中搜索。三引擎搜索网盘资源。用法同下方四引擎全网搜。
javascript:
    if (navigator.clipboard) {
         navigator.clipboard.readText().then(function(text) {
             const encodedText = encodeURIComponent(text);
             const searchUrl1 = `https://www.yunso.net/index/user/s?wd=${encodedText}`;
            window.open(searchUrl1, %27_blank%27);
            const searchUrl2 = `https://www.sopandas.cn/e/${encodedText}`;
         window.open(searchUrl2, %27_blank%27);
         const searchUrl3 = `https://yapan.io/search?keyword=${encodedText}`;
         window.open(searchUrl3, %27_blank%27);
      }).catch(function(err) {
            console.error(%27无法读取剪贴板内容: %27, err);
      });
   } else {      console.error(%27浏览器不支持剪贴板API%27);
}



https://static.52pojie.cn/static/image/hrline/2.gif

网上找资料,很不容易。能一下子让四个搜索引擎帮你全网搜,就好了。现在按以下步骤就可以实现了。以edge浏览器为例,其他浏览器同理。
https://imgsrc.baidu.com/forum/pic/item/c2cec3fdfc0392455fca2a34c194a4c27d1e258a.jpg
附文本代码:
javascript:
      if (navigator.clipboard) {
    navigator.clipboard.readText().then(function(text) {   
      const encodedText = encodeURIComponent(text);
      const searchUrl1 = `https://www.baidu.com/s?wd=${encodedText}`;
      window.open(searchUrl1, '_blank');
      const searchUrl2 = `https://www.bing.com/search?q=${encodedText}`;
      window.open(searchUrl2, '_blank');
      const searchUrl3 = `https://www.so.com/s?q=${encodedText}`;
      window.open(searchUrl3, '_blank');
      const searchUrl4 = `https://www.sogou.com/web?query=${encodedText}`;
      window.open(searchUrl4, '_blank');
    }).catch(function(err) {
      console.error('无法读取剪贴板内容: ', err);
    });
} else {
    console.error('浏览器不支持剪贴板API');
}

42328669425 发表于 2024-4-9 19:38

感谢搜狗的query后少了个=

L153518 发表于 2024-4-9 18:37

谢谢大佬

tianmenghuan 发表于 2024-4-9 18:42

感谢大佬的分享{:1_921:}

nxcr 发表于 2024-4-9 20:00

支持一下技术文章

SixGod0o0 发表于 2024-4-9 21:31

感谢大佬分享

策士 发表于 2024-4-9 21:42

这个功能强大,攒

晓强工作 发表于 2024-4-9 22:11


感谢分享

cbkxh 发表于 2024-4-9 23:05

在360浏览器搜藏夹不会弄

Tsirius 发表于 2024-4-10 03:01

感谢楼主分享
页: [1] 2 3
查看完整版本: javascript四个搜索引擎一起帮你搜索