blob: 73f3beb2791a2d84a573a8f90fb33a5dd20c18a1 [file] [log] [blame]
// Copyright 2015 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.
// Wait for the window to fully load, since that's when the popup is shown.
window.onload = function() {
window.setTimeout(function() {
chrome.test.sendMessage('Popup opened');
}, 0);
};