Add row to Google Sheets

Add row to Google Sheets

Allows you to add a row to a Google Sheet from a browser popup

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Add row to Google Sheets",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "Allows you to add a row to a Google Sheet from a browser popup",
  "homepage_url": "https://github.com/gsingh93/add-row-to-google-sheets-extension",
  "browser_action": {
    "default_title": "Add row to Google Sheets",
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' https://apis.google.com; object-src 'self';",
  "oauth2": {
    "client_id": "10813019713-2eo6i3k0jsao51ce1gr1sr3pugkc933p.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/drive.metadata.readonly",
      "https://www.googleapis.com/auth/spreadsheets"
    ]
  },
  "permissions": [
    "identity"
  ]
}