Files
browser-wakatime/assets/js/devtools.js
2015-06-18 13:39:47 +02:00

13 lines
331 B
JavaScript

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