本帖最后由 zjg121 于 2024-4-12 10:11 编辑
省CB的方法来了!
电子书经常在网盘共享,想找电子书,优先在网盘资源中搜索。三引擎搜索网盘资源。用法同下方四引擎全网搜。
[JavaScript] 纯文本查看 复制代码 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);
}
网上找资料,很不容易。能一下子让四个搜索引擎帮你全网搜,就好了。现在按以下步骤就可以实现了。以edge浏览器为例,其他浏览器同理。
附文本代码:
[JavaScript] 纯文本查看 复制代码 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');
} |