1
0
mirror of https://github.com/MatMoul/quickdial-webext.git synced 2024-12-23 15:36:12 +00:00

Features: Add toolbar button

This commit is contained in:
MatMoul 2017-10-14 19:33:20 +02:00
parent 7e11b0b7da
commit 30b432d1b8
2 changed files with 11 additions and 1 deletions

View File

@ -5,6 +5,9 @@ core.init = function(){ // Init module
core.Settings.init(function(){
core.Messages.init();
browser.runtime.sendMessage({ cmd: core.Messages.Commands.settingsChanged });
browser.browserAction.onClicked.addListener(function(){
browser.tabs.create({});
});
core.GridNodes.sync(core.node, core.settings.grid.root, function(){
browser.runtime.sendMessage({ cmd: core.Messages.Commands.gridNodesLoaded });
core.Bookmarks.initListener();

View File

@ -28,6 +28,13 @@
"scripts": ["js/background.js"]
},
"browser_action": {
"default_icon": {
"24": "img/24.png",
"32": "img/32.png"
}
},
"chrome_url_overrides" : {
"newtab": "dial"
},