Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / browser_action / getters / background.js
blob3a47ec1080419dd31bf1eef9026beb5713d5e281
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 chrome.browserAction.setBadgeBackgroundColor({color: [255, 0, 0, 255]});
6 chrome.browserAction.setBadgeText({text: 'Text'});
8 chrome.tabs.getSelected(null, function(tab) {
9   chrome.browserAction.setPopup({tabId: tab.id, popup: 'newPopup.html'});
10   chrome.browserAction.setTitle({tabId: tab.id, title: 'newTitle'});
11   chrome.browserAction.setBadgeBackgroundColor({
12     tabId: tab.id,
13     color: [0, 0, 0, 0]
14   });
15   chrome.browserAction.setBadgeText({tabId: tab.id, text: 'newText'});
16   chrome.test.notifyPass()
17 });