{
  "manifest_version": 3,
  "name": "create-extension template",
  "version": "1.0.0",

  "description": "The next great extension to take the Web Store by storm - Built with create-extension.",

  "action": {
    "default_title": "create-extension template",
    "default_popup": "popup/index.html",
    "default_icon": {
      "16": "icon/icon16.png",
      "24": "icon/icon24.png",
      "32": "icon/icon32.png"
    }
  },
  "options_page": "options/index.html",
  "icons": {
    "16": "icon/icon16.png",
    "48": "icon/icon48.png",
    "128": "icon/icon128.png"
  },
  "background": {
    "service_worker": "background/service_worker.js"
  },
  "commands": {},
  "content_scripts": [
    {
      "matches": ["https://*/*", "http://*/*"],
      "js": ["injected/all_pages.js"]
    },
    {
      "matches": ["https://*/home/*", "http://*/home/*"],
      "js": ["injected/home_page.js"]
    }
  ],
  "homepage_url": "https://github.com/albertpatterson/chrome-extension-starter",
  "permissions": []
}
