sogouExplorer.extension.getViews
sogouExplorer.extension.getViews(object details)
- 以数组形式返回扩展中运行的页面们的window对象
- 参数
- details( object )
- type( 可选 string )
- 限制获取的页面的类型,目前只支持'popup'一种,指定后只获取扩展popup和popup window中的页面(包括Option页面、
- sogouExplorer.windows.create指定type: 'popup'的窗口、以及manifest中指定或者通过
- sogouExplorer.browserAction.setPopup设置的扩展的popup页面)。
- 如果不指定,则返回所有的扩展页面(包括背景页面和popup页面)
sogouExplorer.extension.getBackgroundPage
- 返回扩展背景页面的window对象,如果没有背景页面,则返回null
- 参数
- 无
sogouExplorer.contextMenu 系列函数支持在页面中添加、修改、删除菜单项,参看对应的页面。
sogouExplorer.browserAction.showHTMLBalloon
- 以气泡的方式,弹出一个html页面提示。
- !!!注意,当设置页面时,宽和高必须要给出,否则无法设置成功。!!!
- 参数
- details( object )
- path( string )
- 需要显示的html页面路径。只能为扩展目录下的文件。
- width( integer)
- popup页面的宽
- height
- popup页面的高 !!!注意,当设置popup页面时,popup的宽和高必须要给出,否则无法设置成功。!!!