# Chrome

# 常用插件

  • AdBlock - 最佳广告拦截工具
  • 沙拉查词 - 聚合词典划词翻译
  • FeHelper(前端助手)
  • Tampermonkey(油猴脚本)
  • Proxy SwitchyOmega(代理切换)
  • Wappalyzer(网页技术分析)
  • Vimium

# 开发者工具

  • 调试检查 chrome://inspect/

  • 日志追踪 chrome://tracing/

  • WebRTC chrome://webrtc-internals/

  • Service Worker chrome://serviceworker-internals/

# SwitchyOmega

SwitchyOmega (opens new window)

127.0.0.1
[::1]
localhost
192.168.0.0/16
1
2
3
4

浏览器使用规则列表

https://raw.githubusercontent.com/gfwlist/gfwlist/master/gfwlist.txt
1

# Saladict

Saladict (opens new window)

.mtaBox-TextArea-Wrap,
.mtaBox-DrawerBtn,
.waveformBox.saladict-external,
.dictItemHead-Logo,
.menuBar-SearchBox_Wrap,
.menuBar-Btn[title="查单词"] {
  display: none;
}
.dictPanel-Root {
  height: 400px !important;
}
.popup-root {
  height: 150px !important;
}
.popup-root .dictPanel-Root,
.popup-root .dictPanel-Body {
  display: none;
  height: 0 !important;
}
.menuBar {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  padding: 8px;
}
.menuBar-Btn_Icon,
.menuBar-Btn_Icon-fav {
  fill: #222;
}
.dictList {
  min-height: 320px;
}
.dictItem {
  padding: 0 10px;
}
.dictItem:first-child {
  padding-top: 10px;
}
.dictItem-Body {
  padding: 0 3px;
}
.dictItemHead {
  background: #eee;
  border-radius: 6px;
  padding: 5px;
  height: auto;
  display: flex;
  align-items: center;
  border: none;
}
.dictPanel-Root {
  box-shadow: rgba(0, 0, 0, 0.2) 0 7px 21px 2px;
}
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