Files
browser-wakatime/assets/js/devtools.js
2017-04-18 12:12:54 -06:00

13 lines
334 B
JavaScript

/* global browser */
// Create a connection to the background page
var backgroundPageConnection = browser.runtime.connect({
name: "devtools-page"
});
// Send a message to background page with the current active tabId
backgroundPageConnection.postMessage({
name: 'init',
tabId: browser.devtools.inspectedWindow.tabId
});