ポップアップの表示

拡張機能のボタンをクリックすると、ポップアップが表示される。


manifest.json

  1. {  
  2.  "name": "My First Extension",  
  3.  "version": "1.0",  
  4.  "manifest_version": 2,  
  5.  "description": "The first extension that I made.",  
  6.  "browser_action": {  
  7.   "default_icon": "icon.png",  
  8.   "default_popup": "popup.html"  
  9.  }  
  10. }  

  1. <!DOCTYPE html>  
  2. <html lang="ja-JP">  
  3. <head>  
  4.     <meta charset="UTF-8">  
  5.     <title>popup</title>  
  6. </head>  
  7. <body style="min-width:250px">  
  8.     <ul>  
  9.   <li><a href="https://www.google.co.jp/" target="_blank">Google</a></li>  
  10.     </ul>  
  11. </body>  
  12. </html>  

0 件のコメント: