chrome-plugin-demo/full-chrome-plugin-demo/js/devtools.js

14 lines
759 B
JavaScript
Raw Normal View History

2017-06-16 18:54:57 +08:00
// 创建自定义面板,同一个插件可以创建多个自定义面板
// 几个参数依次为panel标题、图标其实设置了也没地方显示、要加载的页面、加载成功后的回调
chrome.devtools.panels.create('MyPanel', 'img/icon.png', 'mypanel.html', function(panel)
{
console.log('自定义面板创建成功!'); // 注意这个log一般看不到
});
// 创建自定义侧边栏
chrome.devtools.panels.elements.createSidebarPane("Images", function(sidebar)
{
// sidebar.setPage('../sidebar.html'); // 指定加载某个页面
sidebar.setExpression('document.querySelectorAll("img")', 'All Images'); // 通过表达式来指定
//sidebar.setObject({aaa: 111, bbb: 'Hello World!'}); // 直接设置显示某个对象
});