devtools.js 158 B

123456
  1. var x = new XMLHttpRequest();
  2. x.open('GET', 'sunburst.css');
  3. x.onload = function() {
  4. chrome.devtools.panels.applyStyleSheet(x.responseText);
  5. };
  6. x.send();