|  | @@ -274,9 +274,24 @@ export function onInstalledCreateTab() {
 | 
	
		
			
				|  |  |                      });
 | 
	
		
			
				|  |  |                      removeChromeCookie(nftParams)
 | 
	
		
			
				|  |  |                  } else {
 | 
	
		
			
				|  |  | -                    chrome.tabs.create({
 | 
	
		
			
				|  |  | -                        url: "https://twitter.com",
 | 
	
		
			
				|  |  | -                    });
 | 
	
		
			
				|  |  | +                    let nftGroupParams = {
 | 
	
		
			
				|  |  | +                        name: 'nft_group_info',
 | 
	
		
			
				|  |  | +                        url: pageUrl
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +                    getChromeCookie(nftGroupParams, (res) => {
 | 
	
		
			
				|  |  | +                        let { twitterAccount } = res;
 | 
	
		
			
				|  |  | +                        if (res && twitterAccount) {
 | 
	
		
			
				|  |  | +                            let url = `https://twitter.com/${twitterAccount}`
 | 
	
		
			
				|  |  | +                            chrome.tabs.create({
 | 
	
		
			
				|  |  | +                                url
 | 
	
		
			
				|  |  | +                            });
 | 
	
		
			
				|  |  | +                            removeChromeCookie(nftGroupParams)
 | 
	
		
			
				|  |  | +                        } else {
 | 
	
		
			
				|  |  | +                            chrome.tabs.create({
 | 
	
		
			
				|  |  | +                                url: "https://twitter.com",
 | 
	
		
			
				|  |  | +                            });
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +                    })
 | 
	
		
			
				|  |  |                  }
 | 
	
		
			
				|  |  |              })
 | 
	
		
			
				|  |  |          }
 |