1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-07-16 11:36:20 +02:00

add eslint.

This commit is contained in:
Kushagra Gour
2016-06-09 13:52:31 +05:30
parent 933024c709
commit 0a32371f0c
3 changed files with 270 additions and 13 deletions

View File

@ -1,3 +1,6 @@
chrome.browserAction.onClicked.addListener(function(activeTab) {
chrome.tabs.create({ url: chrome.extension.getURL('index.html'), selected: true });
chrome.browserAction.onClicked.addListener(function(){
chrome.tabs.create({
url: chrome.extension.getURL('index.html'),
selected: true
});
});