Files
browser-wakatime/assets/js/devtools.js
2015-06-13 15:53:17 +02:00

10 lines
243 B
JavaScript

// Create a connection to the background page
var backgroundPageConnection = chrome.runtime.connect({
name: "devtools-page"
});
backgroundPageConnection.postMessage({
name: 'init',
tabId: chrome.devtools.inspectedWindow.tabId
});