【问题标题】:Link to chrome://chrome/extensions from extension options page从扩展选项页面链接到 chrome://chrome/extensions
【发布时间】:2012-10-19 00:04:09
【问题描述】:
【问题讨论】:
标签:
google-chrome-extension
【解决方案1】:
您可以使用chrome.tabs.update、you don't need the tabs permission for this 打开它。
options.html
<script src="options.js"></script>
<a href="#" id="test">test</a>
options.js
document.addEventListener('DOMContentLoaded', function() {
document.getElementById('test').addEventListener('click', function() {
chrome.tabs.update({ url: 'chrome://chrome/extensions' });
});
});