Skip to content

Commit 916d9af

Browse files
committed
Tweak interceptor names for consistency
1 parent a5c39e3 commit 916d9af

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

src/model/interception/interceptors.ts

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -99,21 +99,21 @@ const INTERCEPT_OPTIONS: _.Dictionary<InterceptorConfig> = {
9999
getActivationOptions: getChromiumOptions
100100
},
101101
'fresh-chrome-beta': {
102-
name: 'Chrome (beta)',
102+
name: 'Chrome (Beta)',
103103
description: ["Intercept a fresh independent Chrome window"],
104104
iconProps: recoloured(SourceIcons.Chrome, '#DB4437'),
105105
tags: BROWSER_TAGS,
106106
getActivationOptions: getChromiumOptions
107107
},
108108
'fresh-chrome-dev': {
109-
name: 'Chrome (dev)',
109+
name: 'Chrome (Dev)',
110110
description: ["Intercept a fresh independent Chrome window"],
111111
iconProps: recoloured(SourceIcons.Chrome, '#74929f'),
112112
tags: BROWSER_TAGS,
113113
getActivationOptions: getChromiumOptions
114114
},
115115
'fresh-chrome-canary': {
116-
name: 'Chrome (canary)',
116+
name: 'Chrome (Canary)',
117117
description: ["Intercept a fresh independent Chrome window"],
118118
iconProps: recoloured(SourceIcons.Chrome, '#e8ab01'),
119119
tags: BROWSER_TAGS,
@@ -127,7 +127,7 @@ const INTERCEPT_OPTIONS: _.Dictionary<InterceptorConfig> = {
127127
getActivationOptions: getChromiumOptions
128128
},
129129
'fresh-chromium-dev': {
130-
name: 'Chromium (dev)',
130+
name: 'Chromium (Dev)',
131131
description: ["Intercept a fresh independent Chromium window"],
132132
iconProps: recoloured(SourceIcons.Chromium, '#74929f'),
133133
tags: BROWSER_TAGS,
@@ -175,21 +175,21 @@ const INTERCEPT_OPTIONS: _.Dictionary<InterceptorConfig> = {
175175
getActivationOptions: getChromiumOptions
176176
},
177177
'fresh-edge-beta': {
178-
name: 'Edge (beta)',
178+
name: 'Edge (Beta)',
179179
description: ["Intercept a fresh independent Edge window"],
180180
iconProps: recoloured(SourceIcons.Edge, '#50e6ff'),
181181
tags: BROWSER_TAGS,
182182
getActivationOptions: getChromiumOptions
183183
},
184184
'fresh-edge-dev': {
185-
name: 'Edge (dev)',
185+
name: 'Edge (Dev)',
186186
description: ["Intercept a fresh independent Edge window"],
187187
iconProps: recoloured(SourceIcons.Edge, '#74929f'),
188188
tags: BROWSER_TAGS,
189189
getActivationOptions: getChromiumOptions
190190
},
191191
'fresh-edge-canary': {
192-
name: 'Edge (canary)',
192+
name: 'Edge (Canary)',
193193
description: ["Intercept a fresh independent Edge window"],
194194
iconProps: recoloured(SourceIcons.Edge, '#ffc225'),
195195
tags: BROWSER_TAGS,
@@ -228,7 +228,7 @@ const INTERCEPT_OPTIONS: _.Dictionary<InterceptorConfig> = {
228228
tags: TERMINAL_TAGS
229229
},
230230
'android-adb': {
231-
name: 'Android device via ADB',
231+
name: 'Android Device via ADB',
232232
description: [
233233
'Intercept an Android device or emulator connected to ADB',
234234
'Automatically injects system HTTPS certificates into rooted devices & most emulators'
@@ -242,7 +242,7 @@ const INTERCEPT_OPTIONS: _.Dictionary<InterceptorConfig> = {
242242
tags: [...MOBILE_TAGS, ...ANDROID_TAGS, 'emulator', 'root', 'adb']
243243
},
244244
'android-device': {
245-
name: 'Android device via QR code',
245+
name: 'Android Device via QR code',
246246
description: [
247247
'Intercept any Android device on your network',
248248
'Manual setup required for HTTPS in some apps'
@@ -256,27 +256,27 @@ const INTERCEPT_OPTIONS: _.Dictionary<InterceptorConfig> = {
256256
tags: [...MOBILE_TAGS, ...ANDROID_TAGS]
257257
},
258258
'manual-ios-device': {
259-
name: 'iOS via manual setup',
260-
description: ["Manually intercept all HTTP(S) traffic from any iOS device"],
259+
name: 'iOS via Manual Setup',
260+
description: ["Manually intercept all HTTP and HTTPS traffic from any iPhone or iPad"],
261261
iconProps: SourceIcons.iOS,
262262
clientOnly: true,
263263
uiConfig: ManualIOSCustomUi,
264264
tags: [...MOBILE_TAGS, ...IOS_TAGS]
265265
},
266266
'ios-device': {
267-
name: 'Automatic iOS device setup',
267+
name: 'Automatic iOS Device Setup',
268268
description: ["Intercept all HTTP traffic from an iOS device on your network"],
269269
iconProps: SourceIcons.iOS,
270270
tags: [...MOBILE_TAGS, ...IOS_TAGS]
271271
},
272272
'network-device': {
273-
name: 'A device on your network',
273+
name: 'A Device on Your Network',
274274
description: ["Intercept all HTTP traffic from another device on your network"],
275275
iconProps: SourceIcons.Network,
276276
tags: [...MOBILE_TAGS, ...IOS_TAGS, ...ANDROID_TAGS, 'lan', 'arp', 'wifi']
277277
},
278278
'virtualbox-machine': {
279-
name: 'A virtualbox VM',
279+
name: 'A Virtualbox VM',
280280
description: ["Intercept all traffic from a Virtualbox VM"],
281281
iconProps: SourceIcons.Desktop,
282282
tags: ['virtual machine', 'vagrant']

0 commit comments

Comments
 (0)