OAuth Tutorial FriendBlock

OAuth Tutorial FriendBlock

Uses OAuth to connect to Google's People API and display contacts photos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "OAuth Tutorial FriendBlock",
  "version": "1.0.1",
  "description": "Uses OAuth to connect to Google's People API and display contacts photos.",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "FriendBlock, friends face's in a block."
  },
  "permissions": [
    "identity",
    "https://accounts.google.com/o/oauth2/token"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "oauth2": {
    "client_id": "653813864094-7v4o34p9o2h3ama26jdvs5pn01hockgh.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/contacts.readonly"
    ]
  }
}