Skip to content

Instantly share code, notes, and snippets.

@simonfongnt
Created October 19, 2020 03:28
Show Gist options
  • Save simonfongnt/9502d6ae87694dd7aee13dc1ddaff3d1 to your computer and use it in GitHub Desktop.
Save simonfongnt/9502d6ae87694dd7aee13dc1ddaff3d1 to your computer and use it in GitHub Desktop.
Drive API Manifest Example in Chrome Extension
{
"name": "Manifest Example",
"description" : "Drive API Manifest in Chrome Extension",
"version": "1.0",
"permissions": [
"identity"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_title": "BROWSER ACTION TITLE"
},
"oauth2": {
"client_id": "XXXXXXXXXXX-XXXXXXXXXXXXXXXXXXXXXXXXXXXX.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/drive"
]
},
"manifest_version": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment