Travel Mapper: Save travel plans to Google Sheets

Travel Mapper: Save travel plans to Google Sheets

Easily save travel plans, places, & activities to a Google Sheets itinerary right from any website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Travel Mapper: Save travel plans to Google Sheets",
  "description": "Easily save travel plans, places, & activities to a Google Sheets itinerary right from any website.",
  "version": "1.0.1",
  "action": {
    "default_popup": "index.html",
    "default_title": "Open"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "AddingDataToItineraryModal.js"
      ],
      "css": [
        "css/react-datepicker.css"
      ]
    }
  ],
  "oauth2": {
    "client_id": "479722069448-k027h88ddtmf46ctc32k2qfc9g4dile7.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/spreadsheets",
      "https://www.googleapis.com/auth/script.external_request"
    ]
  },
  "host_permissions": [
    "https://script.google.com/*",
    "https://script.googleusercontent.com/*"
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAu0TzxsoiCm73LMnEKtEavGDT1IjYegkkfmpKG+MRg/n2bLd5pVD9mioYKWw8AqQT370PxAdUNKYy4P5ofHTCKfEmac2IjlBeYgowlL5eE4MYQHDpbEGX539dFA/wHwK3E/LNzbHCjhHFghW6/TCznOE0y9hBOphAfDm6dD1DSYGK4wdFxKlX4PNlR15Lx7cvtjc2+Bh9dWEuD+6euTGvsao/rdbKQzI7Y8GoVK/EG6N+7hlhIVUfz+mnxB88SerZCsJVgQtD8LnG37X7HEX+cpjYEEqpOXQbABC6aUW7+bzbzXHP5dowAtAPz9Y2hmkFYxjZvIn7Ylx1XzRK0WNERwIDAQAB",
  "permissions": [
    "storage",
    "identity",
    "identity.email",
    "contextMenus"
  ],
  "icons": {
    "16": "icon16x16.png",
    "48": "icon48x48.png",
    "128": "icon128x128.png"
  }
}