{
    "manifest_version": 2,
    "name": "<%= extName %>",
    "description": "<%= description %>",
    "version": "0.0.1",
    "icons": {
        "16": "img/icon_16.png",
        "32": "img/icon_32.png",
        "48": "img/icon_48.png",
        "64": "img/icon_64.png",
        "128": "img/icon_128.png"
    },
    "permissions": [
        "http://*.example.com/*",
        "https://*.example.com/*"
    ],
    <%if (eventPage) {%>
    "background": {
		"scripts": ["js/eventPage.js"],
		"persistent": false
  	},
    <%}%>
    <%if (popup) {%>
    "browser_action": {
        "default_icon": "img/icon_19.png",
        "default_popup": "popup.html",
        "default_title": "<%= extName %>"
      },
    <%}%>
    "content_scripts": [
        {
            "matches": [
                "http://www.example.com/*"
            ],
            "css": [
                "css/main.min.css"
            ],
            "run_at": "document_idle",
            "js": [
                "js/main.js"
            ]
        }
    ]
}
