Home | History | Annotate | Download | only in google_now
      1 {
      2   //chrome-extension://pmofbkohncoogjjhahejjfbppikbjigm
      3   "name": "Google Now",
      4   "version": "1.2.0.1",
      5   "description": "Integrates Google Now into Chrome.",
      6   "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDh/njCc/GTuP7uYix39uinhkX+7RyEoMaOQyoc065gsQ5b9cLpZToK78xgpsc9ThrpLVDOwqz6cGeLgIk+kPeRMQe07T+/mh3U5klegDx9pfr9T3aiRNQnJYJv8niVs9aJ/sBSqxtHt2LlhEt9ajFXue7Q3LkzyTlXpxoEFH1keQIDAQAB",
      7   "permissions": [
      8     "alarms",
      9     "location",
     10     "metricsPrivate",
     11     "notifications",
     12     "preferencesPrivate",
     13     "storage",
     14     "tabs",
     15     // TODO(vadimt): Replace <all_urls> with real URL patterns once we know
     16     // them.
     17     "<all_urls>",
     18     "identity"
     19   ],
     20   "manifest_version": 2,
     21   "background": {
     22     "scripts": ["utility.js", "cards.js", "background.js"],
     23     "persistent": false
     24   },
     25   // TODO(vadimt): Remove using chrome.omnibox.
     26   "omnibox": { "keyword" : "gn_url" },
     27   "oauth2": {
     28     "auto_approve": true,
     29     "scopes": ["https://www.googleapis.com/auth/googlenow"]
     30   }
     31 }
     32