I\'m using the chrome bootstrap styles (see http://roykolak.github.com/chrome-bootstrap/) to build my options page. Now I\'d like to have a link back to chrome://chrome/ext
You can open this with chrome.tabs.update, you don't need the tabs permission for this.
options.html
test
options.js
document.addEventListener('DOMContentLoaded', function() {
document.getElementById('test').addEventListener('click', function() {
chrome.tabs.update({ url: 'chrome://chrome/extensions' });
});
});