1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-02 02:14:52 +12:00

Chrome: bypass options_ui

This commit is contained in:
Deathamns 2015-02-12 16:50:40 +01:00 committed by gorhill
parent 86cae37cb6
commit 32ad9420de

View file

@ -29,6 +29,29 @@
'use strict';
var fileName = 'options_ui.html';
if ( location.pathname.slice(-fileName.length) === fileName ) {
var messager = vAPI.messaging.channel('_open');
messager.send({
what: 'gotoURL',
details: {
url: 'dashboard.html',
index: -1
}
});
window.close();
}
})();
/******************************************************************************/
/******************************************************************************/
(function() {
'use strict';
self.vAPI = self.vAPI || {};
var chrome = self.chrome;