blob: e2a8929c80fc6463b1703caf3192b77af147e956 [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
var contextMenuTitle = "Context Menu #2 - Extension #3";
chrome.contextMenus.create({ "title": contextMenuTitle }, function() {
if (!chrome.runtime.lastError) {
chrome.test.sendMessage("created item");
}
});