UNPKG

264 BJavaScriptView Raw
1/* global chrome */
2'use strict'
3
4chrome.browserAction.onClicked.addListener(function (tab) {
5 chrome.storage.sync.set({ 'chrome-app-sync': true })
6
7 chrome.tabs.create({ 'url': chrome.extension.getURL('index.html') }, function (tab) {
8 // tab opened
9 })
10})