Advertisement
Guest User

Untitled

a guest
Dec 29th, 2012
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement