1. {
  2. "name": "Extension title",
  3. "version": "1.0",
  4. "description": "Extension description",
  5.  
  6.  
  7. "manifest_version": 2,
  8.  
  9. "background": {
  10. "scripts": ["files/weather.js", "files/jquery.js"],
  11. "persistent": true
  12. },
  13.  
  14. "browser_action": {
  15. "default_icon": {
  16. "19": "images/icon_m.png"
  17.  
  18. },
  19. "default_title": "weather reporter",
  20. "default_popup": "files/pop_up.html"
  21. },
  22.  
  23. "permissions" : [
  24. "notifications",
  25. "tabs"
  26.  
  27. ]
  28.  
  29. }