Save Image To Google Photo

Save Image To Google Photo

Save Images to Google Photos with right click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_application_title__",
  "version": "1.0.4",
  "manifest_version": 2,
  "default_locale": "en_US",
  "description": "__MSG_application_description__",
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "container": [
    "GOOGLE_DRIVE"
  ],
  "background": {
    "scripts": [
      "/js/setrequest.js",
      "/js/install.js"
    ]
  },
  "permissions": [
    "identity",
    "storage",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://save-photos.freeonlineapps.net/*"
      ],
      "js": [
        "/js/oauthRedirect.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/icon-16.png",
      "32": "icons/icon-32.png",
      "48": "icons/icon-48.png",
      "128": "icons/icon-128.png"
    },
    "default_title": "google photos extension",
    "default_popup": "popup.html"
  },
  "oauth2": {
    "client_id": "110914424327-ddrjlnioak1sgtshnj8chobjrpp76log.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/photoslibrary"
    ]
  },
  "incognito": "split",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}