Home | History | Annotate | Download | only in gaia_auth
      1 {
      2   // chrome-extension://mfffpogegjflfpflabcdkioaeobkgjik/
      3   "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQC4L17nAfeTd6Xhtx96WhQ6DSr8KdHeQmfzgCkieKLCgUkWdwB9G1DCuh0EPMDn1MdtSwUAT7xE36APEzi0X/UpKjOVyX8tCC3aQcLoRAE0aJAvCcGwK7qIaQaczHmHKvPC2lrRdzSoMMTC5esvHX+ZqIBMi123FOL0dGW6OPKzIwIBIw==",
      4   "name": "GaiaAuthExtension",
      5   "version": "0.0.1",
      6   "manifest_version": 2,
      7   "content_scripts": [
      8     {
      9       "matches": [
     10           "https://www.google.com/accounts/*",
     11           "https://accounts.google.com/*"
     12       ],
     13       "css": ["keyboard_ui.css"],
     14       "all_frames": true
     15     }
     16   ],
     17   "content_security_policy": "default-src 'self'; script-src 'self'; frame-src *; style-src 'self' 'unsafe-inline'",
     18   "description": "GAIA Component Extension",
     19   "web_accessible_resources": [
     20     "main.css",
     21     "main.html",
     22     "main.js",
     23     "offline.css",
     24     "offline.html",
     25     "offline.js",
     26     "success.html",
     27     "success.js",
     28     "util.js"
     29   ],
     30   // cookies for getting hash passed back from GAIA on login success
     31   // tabs for calling current webui's login. This might not be needed once
     32   //     we have extension API
     33   "permissions": [
     34       "cookies",
     35       "tabs",
     36       "chrome://oobe/",
     37       "https://www.google.com/accounts/*",
     38       "https://accounts.google.com/*"
     39   ]
     40 }
     41