0%

browser

Search

Syntax

1
2
3
4
5
java link*map
java "concurrency programming" filetype:pdf language:zh
linkedhashmap site:(csdn.net | cnblogs.com)
linkedhashmap site:(csdn.net or cnblogs.com)
intext:linkedhashmap -intitle:linkedhashmap

Fuzzy

1
2
3
~:同义符
*:通配符
?:通配符

Logic

1
2
3
4
5
"":关键字不分词,完全匹配关键字
-:必须排除关键字
+:必须包含关键字
&(and):同时匹配所有关键字,默认逻辑
|(or):只需匹配任意关键字,非默认逻辑

Filter

1
2
3
4
5
6
7
site:限定搜索结果的网站来源
filetype:限定搜索结果的文本格式
language:限定搜索语言(zh、en)
intitle:在标题里搜索关键词
inurl:在链接里搜索关键词
intext:在内容里搜索关键词
index:在内容里搜索关键词

Engine

谷歌、微软bing、百度、头条、360、Yandex

特定领域搜索引擎

茶杯狐:https://cupfox.app/【影视】

安娜的档案:https://zh.annas-archive.org/【出版书/外语书/可下载】

鸠摩搜书/熊猫搜书【偏向电子版】

trace:https://trace.moe/【二次元图片出处】

Ascii2d:https://ascii2d.net/【二次元图片出处】

音乐搜索器:http://music.qyqm.top/【音乐下载】

阿里云盘搜索:https://zhaoziyuan.la/

书格网:https://new.shuge.org/【古籍/古文献/高清】

文津搜索:http://find.nlc.cn/【古籍/古文献/高清】

iconfont:https://www.iconfont.cn/【图标下载】

flaticon:https://www.freepikcompany.com/flaticon【图标/插画/下载】

100font:https://www.100font.com/【字体版权查看】

scihub:https://tool.yovisun.com/scihub/【论文查找/8000万数据文献】

哲学社会科学文献中心:https://www.ncpssd.org/index【论文查找/2000多万数据文献】

中国裁判文书网:https://wenshu.court.gov.cn/【文书模板】

中国自然标本馆:https://www.cfh.ac.cn/Spdb/spsearch.aspx【动物/植物/微生物资料】

国家企业信息公示系统:https://www.gsxt.gov.cn/index.html【免费查找企业数据】

开发者搜索:https://kaifa.baidu.com/【程序员/编程】

Goobe:https://goobe.io/【程序员/编程】

phind:https://www.phind.com/【程序员/编程】

百度指数/微信指数【词的热度】

Plugins

  1. EditThisCookie
  2. JSON Viewer
  3. JSON-handle
  4. Proxy SwitchyOmega
  5. Tabs saver
  6. XPath Generator

Translation

推荐 沙拉查词

Toc

Toc:Table of Content

推荐 Smart TOC

Copy

推荐 SuperCopy(超级复制)

Speed

推荐 Global Speed(视频速度控制)

Script

推荐 Tampermonkey(油猴)

Snippet

破除CSDN强制关注

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var article_content = document.getElementById("article_content");
article_content.removeAttribute("style");
var follow_texts = document.getElementsByClassName('follow-text')
var hide_article_boxs = document.getElementsByClassName('hide-article-box')
if (follow_texts[0] && hide_article_boxs[0]) {
console.log("hide_article_do")

var follow_text = follow_texts[0];
follow_text.parentElement.parentElement.removeChild(follow_text.parentElement);

var hide_article_box = hide_article_boxs[0];
hide_article_box.parentElement.removeChild(hide_article_box);
} else {
console.log("hide_article_no")
}

提取网页外链信息

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
var p = /<title>.*<\/title>/g
function parsePageTitle(s) {
var items = s.match(p)
if (items) {
return items[0].replace("<title>", "").replace("</title>", "")
}

return "null"
}

function getPageSource(url) {
return fetch(url).then(res => res.text())
}

function getPageTitle(url) {
fetch(url).then(res => res.text())
.then(res => {
console.log(parsePageTitle(res))
})
}

function getPageTitles(urls) {
Promise.all(
urls.map(url =>
fetch(url).then(res => res.text())
)
).then(res => {
for (s of res) {
console.log(parsePageTitle(s))
}
})
}

function testGetPageTitle() {
// var url = "https://blog.csdn.net/rikkatheworld/article/details/123040617"
var url = "http://localhost:4000/2017/08/01/java/junior/java-2-lang/"
getPageTitle(url)
}

function testGetPageTitles() {
var urls = []
urls.push("http://localhost:4000/2017/08/01/java/junior/java-2-lang/")
urls.push("http://localhost:4000/2017/08/01/java/junior/java-3-container/")

getPageTitles(urls)
}

function showOutLinks() {
var data = []

var urls = document.getElementsByTagName('a')
for (url in urls) {
if (!urls[url].href || !urls[url].text) {
continue
}

var href = urls[url].href + ""
if (href.includes("localhost")) {
continue
}

var text = urls[url].text + ""

var row = []
row.push(text)
row.push(href)

data.push(row)

// console.log(text + " : " + href)
}

// console.table(data)

for (row of data) {
console.log(row[0] + " : " + row[1])
}
}

// testGetPageTitle()
showOutLinks()
只想买包辣条