Open chrome://extensions from web using link

前提是你 提交于 2019-12-24 13:33:45

问题


I have an chrome extension that might be disabled by the user. I want to create a link to the chrome://extensions menu in that case. It would be something like

<a href="chrome://extensions" target="_blank">Chrome extensions</a>

which is not allowed: Not allowed to load local resource: chrome://extensions/

Most of the solutions I have read imply the use of an extension (which for this use case will be disabled):

chrome.tabs.create({'url': 'chrome://extensions'});

Is there any way to solve this issue?

Of course, I might be wrong... In that case, what could I do?

Thanks in advance


回答1:


No. There exist privileged URLs and they cannot be opened from web pages or the command line.



来源:https://stackoverflow.com/questions/32910562/open-chrome-extensions-from-web-using-link

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!