网上找资料,很不容易。能一下子让四个搜索引擎帮你全网搜,就好了。现在按以下步骤就可以实现了。以edge浏览器为例,其他浏览器同理。
代码变成书签到收藏夹上的方法: 任意收藏一个网页,在收藏夹得到一个书签,右键点击这个书签,编辑这个书签,修改名称为(4搜索),内容替换为代码,保存即可使用。
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');
}
请登录后发表评论
注册
请登录后查看评论内容