Home | History | Annotate | Download | only in basic_auth_extension
      1 {
      2   "manifest_version": 2,
      3 
      4   "name": "Basic HTTP Auth Extension",
      5   "version": "1.1",
      6   "description": "Send credentials to basic HTTP auth pages.",
      7   "browser_action": {
      8     "default_icon": "icon.png"
      9   },
     10 
     11   "background": {
     12     "scripts": ["background.js"]
     13   },
     14 
     15   "permissions": [
     16     "webRequest",
     17     "webRequestBlocking",
     18     "tabs",
     19     "https://*/*",
     20     "http://*/*"
     21   ]
     22 }
     23