manifest.json 471 B

123456789101112131415161718192021222324
  1. {
  2. "manifest_version" : 2,
  3. "name" : "Let's use the real architecture",
  4. "description" : "Use a background file and an event page to handle event instead of working on popup.js",
  5. "version" : "1.0",
  6. "browser_action" : {
  7. "default_icon" : "images/icon.png",
  8. "default_popup" : "html/popup.html"
  9. },
  10. "background" : {
  11. "scripts" : ["js/background.js"]
  12. },
  13. "content_scripts" : [{
  14. "matches" : ["http://*/*", "https://*/*"],
  15. "js" : ["js/notification.js"]
  16. }]
  17. }