python selenium chrome incognito with extentions
extention manager is not enabled in incognito but it enabeld in normal chrome not incognito
i have activated developer mode
and add extention
this is my options in selenium chrome dirver
chrome_options = uc.ChromeOptions()
chrome_options.add_argument("start-maximized");
chrome_options.add_argument("--incognito")
path = os.path.dirname("this is my extention path")
chrome_options.add_argument(f"--load-extension={path}")
chrome_options.add_argument("--force-dev-mode-highlighting")
prefs = {"extensions.ui.developer_mode": True}
chrome_options.add_experimental_option("prefs", prefs)
chrome_options.add_argument("--system-developer-mode")