OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 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. |
| 4 |
| 5 var inIncognitoContext = chrome.extension.inIncognitoContext; |
| 6 var incognitoStr = inIncognitoContext ? "incognito" : "regular"; |
| 7 |
| 8 function onclick(info) { |
| 9 chrome.test.sendMessage("onclick fired " + incognitoStr); |
| 10 } |
| 11 |
| 12 window.onload = function() { |
| 13 chrome.contextMenus.create({title: "item " + incognitoStr, |
| 14 onclick: onclick}, function() { |
| 15 if (!chrome.extension.lastError) { |
| 16 chrome.test.sendMessage("created item " + incognitoStr); |
| 17 } |
| 18 }); |
| 19 }; |
OLD | NEW |