Add to photos

Add to photos

Add context menu to save photos to google photos

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Add to photos",
  "version": "1.1.1",
  "description": "Add context menu to save photos to google photos",
  "manifest_version": 2,
  "icons": {
    "64": "icon_64.png",
    "128": "icon_128.png"
  },
  "browser_action": {
    "default_title": "AddPhotos, speedy and safety"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "oauth2": {
    "client_id": "492564831811-v22b74kgolbf5k0s0i401e3qorg34h2g.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/photoslibrary.appendonly"
    ]
  },
  "permissions": [
    "storage",
    "identity",
    "contextMenus"
  ]
}