I may not be a professional developer, but I created a Chrome extension app. You can check it out here: Link to Chrome Extension
This app currently adds a context menu and opens a new tab in Chrome. However, one of my users has asked me to make the app work in incognito mode as well (i.e., open tabs with incognito mode).
I have tried several times, but I am struggling to figure out how to detect incognito mode and how to open a new incognito tab within the same window. This is my final attempt, so please help me out... Thank you.
chrome.extension.isAllowedIncognitoAccess(function(isAllowedAccess)
{
if (isAllowedAccess) return;
window.open("http://search.naver.com/search.naver?ie=utf8&query=" + itemData.selectionText, '_blank');
});