{
   "app": {
      "launch": {
         "local_path": "get.html"
      }
   },
   "content_scripts": [
    {
      "matches": ["*://*/*"],
      "js": ["content.js"],
      "run_at": "document_start"
    }
   ],
   "web_accessible_resources": [
    "inject.js"
   ],
   "background": {
    "scripts": ["background.js"]
   },
   "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
   "description": "My Description",
   "manifest_version": 2,
   "name": "Title",
   "permissions": ["tabs", "http://*/*", "https://*/*", "webNavigation", "storage" ],
   "version": "1.0.0"
}
