sogouExplorer.extension.getViews

    sogouExplorer.extension.getViews(object details)

    1. 以数组形式返回扩展中运行的页面们的window对象
    2.  
    3. 参数
    4. details( object )
    5. type( 可选 string )
    6. 限制获取的页面的类型,目前只支持'popup'一种,指定后只获取扩展popuppopup window中的页面(包括Option页面、
    7. sogouExplorer.windows.create指定type: 'popup'的窗口、以及manifest中指定或者通过
    8. sogouExplorer.browserAction.setPopup设置的扩展的popup页面)。
    9. 如果不指定,则返回所有的扩展页面(包括背景页面和popup页面)

    sogouExplorer.extension.getBackgroundPage

    1. 返回扩展背景页面的window对象,如果没有背景页面,则返回null
    2.  
    3. 参数

    sogouExplorer.contextMenu 系列函数支持在页面中添加、修改、删除菜单项,参看对应的页面。

    sogouExplorer.browserAction.showHTMLBalloon

    1. 以气泡的方式,弹出一个html页面提示。
    2. !!!注意,当设置页面时,宽和高必须要给出,否则无法设置成功。!!!
    3.  
    4. 参数
    5. details( object )
    6. path( string )
    7. 需要显示的html页面路径。只能为扩展目录下的文件。
    8. width( integer)
    9. popup页面的宽
    10. height
    11. popup页面的高 !!!注意,当设置popup页面时,popup的宽和高必须要给出,否则无法设置成功。!!!