1
0
Fork 0
This repository has been archived on 2024-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
piwik-checker/js/devtools.js
Lukas Winkler e6443a6b49 fix path
2017-07-08 13:05:01 +02:00

7 lines
237 B
JavaScript

var port = chrome.runtime.connect({
name: "devtool-comunication" //Given a Name
});
chrome.devtools.panels.create("Piwik Checker", "images/devtoolicon.png", "views/panel.html", function(panel) {
console.log("panel loaded");
});