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({
15 chrome.browserAction.setBadgeText({tabId: tab.id, text: 'newText'});
16 chrome.test.notifyPass()