chrome-extension-cli
Version:
The CLI for your next Chrome Extension.
11 lines (8 loc) • 338 B
JavaScript
;
// A DevTools extension adds functionality to the Chrome DevTools.
// For more information on DevTools,
// See https://developer.chrome.com/extensions/devtools
// Create a panel named `My Panel`
chrome.devtools.panels.create('My Panel', '', 'panel.html', (panel) => {
console.log('Panel was successfully created!');
});