Save Images to Google Photos™

Save Images to Google Photos™

Save Images to Google Photos with right click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_application_title__",
  "version": "1.0.6",
  "manifest_version": 2,
  "default_locale": "en",
  "description": "__MSG_application_description__",
  "icons": {
    "16": "img/icon-16.png",
    "32": "img/icon-32.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "container": [
    "GOOGLE_DRIVE"
  ],
  "background": {
    "scripts": [
      "js/welcome-goodbye.js",
      "js/setrequest.js"
    ]
  },
  "permissions": [
    "identity",
    "storage",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://save-photos.freebusinessapps.net/*"
      ],
      "js": [
        "js/oauthRedirect.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "img/icon-16.png",
      "32": "img/icon-32.png",
      "48": "img/icon-48.png",
      "128": "img/icon-128.png"
    },
    "default_title": "google photos extension",
    "default_popup": "ui/popup.html"
  },
  "oauth2": {
    "client_id": "1091195430040-audbciu6essh07bg6d5s9rtb59cs5b9m.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/photoslibrary"
    ]
  },
  "incognito": "split",
  "homepage_url": "https://save-photos.freebusinessapps.net/"
}