chromium/chrome/test/data/extensions/context_menus/target_urls/service_worker/test.js

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

var patterns = [ 'http://*.google.com/*' ];
chrome.contextMenus.create({title: 'item1', contexts: ['link'], id: 'my_id',
                            targetUrlPatterns: patterns}, function() {
  if (!chrome.runtime.lastError) {
    chrome.test.sendMessage('created items');
  }
});