manifest.json

{
    "manifest_version": 2,
    "name": "Framework Test Package",
    "version": "0.1",
    "description": "This is intended, purely, to test the framework browser-ext framework",
    "background": {
        "scripts": [
            "/background/framework.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http://dev.localhost/*"
            ],
            "js": [
                "vendor/rbear/framework.js",
                "/route/dev.localhost.js"
            ]
        },
        {
            "matches": [
                "http://mz.localhost/*"
            ],
            "js": [
                "/route/mz.localhost.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        "/view/*",
        "/script/*",
        "/style/*",
        "/image/*",
        "/res/*"
    ]
}