1
- import { ProxyDetails } from '@/helpers/socksProxy/socksProxy.types' ;
2
1
import { checkDomain } from '@/helpers/domain' ;
3
- import { getActiveProxyDetails , getActiveTab } from '@/helpers/tabs ' ;
2
+ import { domainProxyDetailsMap } from '@/helpers/socksProxy/getRandomSessionProxy ' ;
4
3
import { isLocalOrReservedIP } from '@/helpers/socksProxy/socksProxy' ;
4
+ import { ProxyDetails } from '@/helpers/socksProxy/socksProxy.types' ;
5
+ import { getActiveProxyDetails , getActiveTab } from '@/helpers/tabs' ;
5
6
6
7
export const updateCurrentTabProxyBadge = async ( ) => {
7
8
const activeTab = await getActiveTab ( ) ;
@@ -19,10 +20,12 @@ export const updateTabProxyBadge = async (
19
20
const { excludedHosts } = await browser . storage . local . get ( 'excludedHosts' ) ;
20
21
const { hostProxiesDetails } = await browser . storage . local . get ( 'hostProxiesDetails' ) ;
21
22
const { globalProxyDetails } = await browser . storage . local . get ( 'globalProxyDetails' ) ;
23
+ const { randomProxyMode } = await browser . storage . local . get ( 'randomProxyMode' ) ;
22
24
23
25
const hostProxiesDetailsParsed = JSON . parse ( hostProxiesDetails ) ;
24
26
const excludedHostsParsed = JSON . parse ( excludedHosts ) ;
25
27
const globalProxyDetailsParsed = JSON . parse ( globalProxyDetails ) ;
28
+ const randomProxyModeParsed = JSON . parse ( randomProxyMode ) ;
26
29
27
30
const tabHost = new URL ( url ! ) . hostname ;
28
31
const { domain, subDomain, hasSubdomain } = checkDomain ( tabHost ) ;
@@ -34,6 +37,18 @@ export const updateTabProxyBadge = async (
34
37
return ;
35
38
}
36
39
40
+ // 0. Check for random proxy mode
41
+ if ( randomProxyModeParsed ) {
42
+ const proxyDetails = domainProxyDetailsMap [ domain ] ;
43
+ if ( proxyDetails ) {
44
+ const proxyDNSMessage = proxyDetails . proxyDNS ? 'DNS proxied' : 'DNS not proxied' ;
45
+ const title = `${ proxyDetails . city } , ${ proxyDetails . country } \nServer: ${ proxyDetails . server } \n${ proxyDNSMessage } ` ;
46
+ browser . browserAction . setTitle ( { tabId, title } ) ;
47
+ await setTabExtBadge ( tab , true , false , proxyDetails . countryCode ) ;
48
+ return ;
49
+ }
50
+ }
51
+
37
52
// 1. Check subdomain level
38
53
if ( hasSubdomain ) {
39
54
if ( excludedHostsParsed . includes ( subDomain ) ) {
0 commit comments