Home | History | Annotate | Download | only in help_app
      1 {
      2   "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCqtHjbcvWT9Kbcapi0SaG28I66eRQHQvOqngCizm87qMb9RTgrftaUAGwPmxFLy4gBwO572N5ACpxsR6m2fRg9PSjeqaEojiFd28KY/b4VPoq/ukNOy97Ns7lPv4gmtNB8txuFIFuNw3s1k8nEJVAp659d7SnMsL4O1uXkW1huGQIDAQAB",
      3   "name": "Help",
      4   "version": "4.0",
      5   "description": "Chrome OS Help",
      6   "default_locale": "en",
      7   "manifest_version": 2,
      8   "content_security_policy": "default-src 'self'; img-src 'self' data:;",
      9   "background": {
     10     "scripts": [
     11       "js/background-bundle.js"
     12     ],
     13     "persistent": false
     14   },
     15   "content_scripts": [
     16     {
     17       "js": ["js/content_script_head.js"],
     18       "matches": ["https://support.google.com/chromebook/*"],
     19       "run_at": "document_start"
     20     },
     21     {
     22       "js": ["js/content_script_foot.js"],
     23       "matches": ["https://support.google.com/chromebook/*"],
     24       "run_at": "document_idle"
     25     }
     26   ],
     27   "permissions": [
     28     "storage"
     29   ],
     30   "incognito": "split"
     31 }
     32