| OLD | NEW |
| 1 <html> | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 <head> | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 <script type="text/javascript"> | 3 // found in the LICENSE file. |
| 4 |
| 4 const tab_log = function(json_args) { | 5 const tab_log = function(json_args) { |
| 5 var args = JSON.parse(unescape(json_args)); | 6 var args = JSON.parse(unescape(json_args)); |
| 6 console[args[0]].apply(console, Array.prototype.slice.call(args, 1)); | 7 console[args[0]].apply(console, Array.prototype.slice.call(args, 1)); |
| 7 } | 8 } |
| 8 | 9 |
| 9 chrome.extension.onRequest.addListener(function(request) { | 10 chrome.extension.onRequest.addListener(function(request) { |
| 10 if (request.command !== 'sendToConsole') | 11 if (request.command !== 'sendToConsole') |
| 11 return; | 12 return; |
| 12 chrome.tabs.executeScript(request.tabId, { | 13 chrome.tabs.executeScript(request.tabId, { |
| 13 code: "("+ tab_log + ")('" + request.args + "');", | 14 code: "("+ tab_log + ")('" + request.args + "');", |
| 14 }); | 15 }); |
| 15 }); | 16 }); |
| 16 </script> | |
| 17 </head> | |
| 18 </html> | |
| OLD | NEW |