How to build an chrome extension like Google Hangouts

前端 未结 1 1612
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-04 20:49

The Google Hangouts extension has a panel that shows up outside of the Chrome UI.

It is sort of like a notification but not. I don\'t see anything in the Extension D

相关标签:
1条回答
  • 2020-12-04 21:02

    It is an options of chrome.windows.create. Make sure you set type to panel.

    chrome.windows.create({ url: 'https://mobile.twitter.com/', type: 'panel' });
    

    panel may not be supported on all platforms and you may have to specifically enable panels in Chrome Flags chrome://flags/#enable-panels.

    0 讨论(0)
提交回复
热议问题