| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 * Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this | 2 * Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this |
| 3 * source code is governed by a BSD-style license that can be found in the | 3 * source code is governed by a BSD-style license that can be found in the |
| 4 * LICENSE file. | 4 * LICENSE file. |
| 5 --> | 5 --> |
| 6 <html> | 6 <script src="background.js"></script> |
| 7 <head> | |
| 8 <script> | |
| 9 chrome.extension.onRequest.addListener( | |
| 10 function(request, sender, sendResponse) { | |
| 11 // Let the extension know where the script ran. | |
| 12 var url = sender.tab ? sender.tab.url : 'about:blank'; | |
| 13 chrome.test.sendMessage('content script: ' + url); | |
| 14 }); | |
| 15 </script> | |
| 16 </head> | |
| 17 </html> | |
| OLD | NEW |