mainfest.json

{
    "manifest_version": 2,
    "name": "EXTENSION_NAME",
    "version": "0.1",
    "description": "EXTENSION_DESCRIPTION - This manifest is a skeleton/placeholder for your framework-driven browser extension",
    "background": {
        "scripts": [

        ]
    },
    "content_scripts":[{
        "matches": ["..."],
        "js":["..."]
    }],
    "permissions": [
        "..."
    ],
    "web_accessible_resources": ["..."]
}