Created
October 19, 2020 03:28
-
-
Save simonfongnt/9502d6ae87694dd7aee13dc1ddaff3d1 to your computer and use it in GitHub Desktop.
Drive API Manifest Example in Chrome Extension
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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