{   
    "manifest_version": 2,
    "name": "ParrotMocker",
    "version": "1.5.0",
    "description": "Intercept h5/node.js requests and mock reponses",
    "icons": {
        "128": "img/parrot-128.png"
    },
    "browser_action": {
        "default_title": "ParrotMocker",
        "default_icon": "img/parrot-32.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [{
        "matches": ["http://*/*", "https://*/*"],
        "js": ["build/content.js"],
        "run_at": "document_start",
        "all_frames": true
    }],
    "background": {
        "scripts": ["background.js"],
        "persistent": false
    },
    "options_page": "options.html",
    "permissions": [
        "cookies",
        "tabs",
        "https://*/*",
        "http://*/*"
    ]
}