值得收藏:这些谷歌搜索的高级技巧你一定想要知道_邮箱_网站
双引号“关键词”:结果必须包含“关键词”
中划线-:打消
AND:两个条件必须同时知足
OR:两个条件必须至少知足一个
site:example.com:结果必须在域名example.com上
filetype:jpg:结果必须是.jpg类型
AND / OR逻辑可用于组合不同的查询
进入实战环节搜索网页指定网站找关键词 (比如: 当当网找python的书本)
site:dangdang.com python
在什么值得买网站找标题包含“装修”的文章
allintitle:"装修" site:smzdm.com
与amazon.com相似的网站
related:amazon.com
多个条件串起来链式搜索 (比如: 找关于ssl的bug文章:url包含security或者bug-bounty字眼或者hackerone.com的文章)
(inurl:security OR inurl:bug-bounty OR site:hackerone.com) + "ssl"
限定一些顶级域名edu网站,找url带email.xls的结果 (比如:想找一些教授的联系邮箱)
site:.edu file type:xls inurl:"email.xls"
查邮箱
查找某个用户的谷歌邮箱
sahil lavingia "@gmail.com"
查找事情邮箱 (必须先知道网站邮箱格式)
sahil lavingia "@gumroad.com"
www.email-format.com这里可以找到邮箱格式。
(比如https://www.email-format.com/d/qq.com/#,可以看到邮箱常日都因此数字开头)
"s.lavingia" "@" ".com"
网站里包含"@gumroad.com"的完全页面
site:gumroad.com intext:"@gumroad.com"
利用Chrome DevTools工具插入脚本找出所有邮箱并打印,方法在这:
https://www.alec.fyi/how-to-scrape.html
var elems = document.body.getElementsByTagName("");var re = new RegExp("(^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$)");for (var i = 0; i < elems.length; i++) { if (re.test(elems[i].innerHTML)) { console.log(elems[i].innerHTML); }}
文件类型
电子表格文件
filetype:csv OR filetype:xlsx OR filetype:xls OR filetype:xltx OR filetype:xlt OR inurl:airtable.com/universe/
在谷歌文档或者谷歌表格搜索
site:docs.google.com "gumroad"
找品牌网站的logo
"msn.com Logo.png"
找竞品的ppt,推销报告或者白皮书
site:intel.com (filetype:pdf OR filetype:ppt)
找竞品的研究报告
inurl:hubspot-case-study -site:http://hubspot.com
根据SEO关键词找内容
锚定文词包含关键词的网站
inanchor:"cyber security"
研究报告包含关键词
inposttitle:"diy slime"
find backlinks (ex: other sites that link to a particular blog post). note: the link operator is now deprecated
intext:intercom.com/intercom-api-reference/reference
用找到更多短语,这个星号被称为通配符。如果要在结果中得到更多匹配项,则必须在该短语中放置星号,它将为您供应该短语的变体。
design tools
找到利用Intercom工具的网站
intext:"Powered by Intercom" -site:intercom.com
向生活低头的搜索¯\_(ツ)_/¯(找优惠券)
site:curology.com ("coupon" | "referral code" | "affiliate code" | "discount code" | "VIP")
试试twitter
site:twitter.com + "meundies" + ("coupon" | "referral code" | "affiliate code" | "discount code" | "VIP")
试试Mailchimp邮箱
site:campaign-archive.com + "blueapron" + ("coupon" | "referral code" | "affiliate code" | "discount code" | "VIP")
本文系作者个人观点,不代表本站立场,转载请注明出处!